Last change
on this file since 36 was
36,
checked in by tim, 19 years ago
|
replaced reglookup.c with test driver lib-regfio.c
updated relevant Makefiles
|
-
Property svn:keywords set to
Id
|
File size:
396 bytes
|
Line | |
---|
1 | # $Id: Makefile 36 2005-07-31 01:46:51Z tim $ |
---|
2 | |
---|
3 | ################################################################################ |
---|
4 | |
---|
5 | REGLOOKUP=$(BUILD_BIN)/reglookup |
---|
6 | LIBS=$(wildcard ../lib/*.o) |
---|
7 | FILES=$(REGLOOKUP) |
---|
8 | |
---|
9 | all: $(FILES) |
---|
10 | |
---|
11 | $(REGLOOKUP): reglookup.o $(LIBS) |
---|
12 | $(CC) $(CFLAGS) $(OPTS) -o $@ reglookup.o $(LIBS) |
---|
13 | |
---|
14 | reglookup.o: |
---|
15 | $(CC) $(CFLAGS) $(OPTS) -c -o $@ reglookup.c |
---|
16 | |
---|
17 | install: |
---|
18 | cp -r $(BUILD_BIN)/* $(BIN_PREFIX) |
---|
19 | |
---|
20 | clean: |
---|
21 | rm -f *.o |
---|
Note: See
TracBrowser
for help on using the repository browser.