- Location:
- /src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
/src/Makefile
-
Property
svn:keywords
set to
Id
r1 r3 1 # $Id$ 2 3 # Installation prefix. Change to install elsewhere 4 # XXX: installation not yet implemented 5 6 PREFIX=/usr/local 7 8 ################################################################################ 9 10 CC=gcc 1 11 OPTS=-ggdb -std=gnu89 -pedantic -Wall 12 #OPTS=-std=gnu89 -pedantic -Wall 2 13 3 all: reglookup 14 BUILD=../build 15 BUILD_BIN=$(BUILD)/bin 16 BUILD_ETC=$(BUILD)/etc 17 BUILD_DIRS=$(BUILD_BIN) $(BUILD_ETC) 4 18 5 reglookup: reglookup.c 6 gcc $(OPTS) -o reglookup reglookup.c 19 REGLOOKUP=$(BUILD)/bin/reglookup 20 FILES=$(REGLOOKUP) 21 22 all: $(BUILD_DIRS) $(FILES) 23 24 $(BUILD_DIRS): 25 mkdir -p $@ 26 27 $(REGLOOKUP): reglookup.c 28 $(CC) $(OPTS) -o $@ reglookup.c 7 29 8 30 clean: 9 rm - f reglookup31 rm -rf $(BUILD)/* -
Property
svn:keywords
set to
-
/src/reglookup.c
-
Property
svn:keywords
set to
Id
-
Property
svn:keywords
set to
Note: See TracChangeset
for help on using the changeset viewer.