Last change
on this file since 82 was 73, checked in by tim, 19 years ago |
fixes for Makefiles to support FreeBSD's iconv
|
-
Property svn:keywords
set to
Id
|
File size:
413 bytes
|
Line | |
---|
1 | # $Id: Makefile 73 2006-07-31 01:15:56Z tim $
|
---|
2 |
|
---|
3 | ################################################################################
|
---|
4 |
|
---|
5 | REGLOOKUP=$(BUILD_BIN)/reglookup
|
---|
6 | OBJ=$(wildcard ../lib/*.o)
|
---|
7 | FILES=$(REGLOOKUP)
|
---|
8 |
|
---|
9 | all: $(FILES)
|
---|
10 |
|
---|
11 | $(REGLOOKUP): reglookup.o $(OBJ)
|
---|
12 | $(CC) $(CFLAGS) $(OPTS) $(LIB) -o $@ reglookup.o $(OBJ)
|
---|
13 |
|
---|
14 | reglookup.o: reglookup.c
|
---|
15 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ reglookup.c
|
---|
16 |
|
---|
17 | install:
|
---|
18 | cp -r $(FILES) $(BIN_PREFIX)
|
---|
19 |
|
---|
20 | clean:
|
---|
21 | rm -f *.o
|
---|
Note:
See
TracBrowser
for help on using the repository browser.