Last change
on this file since 3 was
3,
checked in by tim, 20 years ago
|
expanded makefile to compile into build/ (more to come)
|
-
Property svn:keywords set to
Id
|
File size:
578 bytes
|
Rev | Line | |
---|
[2] | 1 | # $Id: Makefile 3 2005-02-18 03:59:23Z tim $ |
---|
| 2 | |
---|
[3] | 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 |
---|
[3] | 12 | #OPTS=-std=gnu89 -pedantic -Wall |
---|
[1] | 13 | |
---|
[3] | 14 | BUILD=../build |
---|
| 15 | BUILD_BIN=$(BUILD)/bin |
---|
| 16 | BUILD_ETC=$(BUILD)/etc |
---|
| 17 | BUILD_DIRS=$(BUILD_BIN) $(BUILD_ETC) |
---|
[1] | 18 | |
---|
[3] | 19 | REGLOOKUP=$(BUILD)/bin/reglookup |
---|
| 20 | FILES=$(REGLOOKUP) |
---|
[1] | 21 | |
---|
[3] | 22 | all: $(BUILD_DIRS) $(FILES) |
---|
| 23 | |
---|
| 24 | $(BUILD_DIRS): |
---|
| 25 | mkdir -p $@ |
---|
| 26 | |
---|
| 27 | $(REGLOOKUP): reglookup.c |
---|
| 28 | $(CC) $(OPTS) -o $@ reglookup.c |
---|
| 29 | |
---|
[1] | 30 | clean: |
---|
[3] | 31 | rm -rf $(BUILD)/* |
---|
Note: See
TracBrowser
for help on using the repository browser.