Last change
on this file since 109 was 90, checked in by tim, 18 years ago |
minor changes to Makefiles
Added one warning on an unlikely condition in reglookup
Added the -H option to reglookup-timeline for ommiting the header
|
-
Property svn:keywords
set to
Id
|
File size:
423 bytes
|
Rev | Line | |
---|
[2] | 1 | # $Id: Makefile 90 2007-03-28 19:22:38Z tim $
|
---|
| 2 |
|
---|
[3] | 3 | ################################################################################
|
---|
| 4 |
|
---|
[5] | 5 | REGLOOKUP=$(BUILD_BIN)/reglookup
|
---|
[73] | 6 | OBJ=$(wildcard ../lib/*.o)
|
---|
[3] | 7 | FILES=$(REGLOOKUP)
|
---|
[1] | 8 |
|
---|
[5] | 9 | all: $(FILES)
|
---|
[3] | 10 |
|
---|
[73] | 11 | $(REGLOOKUP): reglookup.o $(OBJ)
|
---|
| 12 | $(CC) $(CFLAGS) $(OPTS) $(LIB) -o $@ reglookup.o $(OBJ)
|
---|
[26] | 13 |
|
---|
[37] | 14 | reglookup.o: reglookup.c
|
---|
[73] | 15 | $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ reglookup.c
|
---|
[36] | 16 |
|
---|
[26] | 17 | install:
|
---|
[90] | 18 | install -m 0755 $(FILES) $(BIN_PREFIX)
|
---|
[36] | 19 |
|
---|
| 20 | clean:
|
---|
| 21 | rm -f *.o
|
---|
Note:
See
TracBrowser
for help on using the repository browser.