Last change
on this file since 226 was
26,
checked in by tim, 19 years ago
|
Moved developer documentation under doc/devel
Fixed a bug with man page installation & moved more of installation out
into sub-directory Makefiles.
|
-
Property svn:keywords set to
Id
|
File size:
769 bytes
|
Line | |
---|
1 | # $Id: Makefile 26 2005-07-09 00:28:40Z tim $ |
---|
2 | |
---|
3 | # Installation prefixes. Change to install elsewhere. |
---|
4 | |
---|
5 | PREFIX=/usr/local |
---|
6 | BIN_PREFIX=$(PREFIX)/bin |
---|
7 | DOC_PREFIX=$(PREFIX)/share/doc/reglookup |
---|
8 | MAN_PREFIX=$(PREFIX)/man |
---|
9 | |
---|
10 | ################################################################################ |
---|
11 | |
---|
12 | CC=gcc |
---|
13 | OPTS=-std=gnu89 -pedantic -Wall |
---|
14 | |
---|
15 | BUILD=$(CURDIR)/build |
---|
16 | BUILD_BIN=$(BUILD)/bin |
---|
17 | BUILD_DOC=$(BUILD)/doc |
---|
18 | |
---|
19 | BUILD_TREE=$(BUILD_BIN) $(BUILD_DOC) |
---|
20 | SUB_DIRS=src doc |
---|
21 | |
---|
22 | FILES=$(REGLOOKUP) |
---|
23 | .PHONY: $(SUB_DIRS) clean |
---|
24 | export |
---|
25 | |
---|
26 | |
---|
27 | all: $(BUILD_TREE) $(SUB_DIRS) |
---|
28 | |
---|
29 | #XXX: This should be more generalized. |
---|
30 | install: all |
---|
31 | mkdir -p $(BIN_PREFIX) |
---|
32 | mkdir -p $(DOC_PREFIX) |
---|
33 | mkdir -p $(MAN_PREFIX)/man1 |
---|
34 | $(MAKE) -C src install |
---|
35 | $(MAKE) -C doc install |
---|
36 | |
---|
37 | |
---|
38 | $(SUB_DIRS): |
---|
39 | $(MAKE) -C $@ |
---|
40 | |
---|
41 | $(BUILD_TREE): |
---|
42 | mkdir -p $@ |
---|
43 | |
---|
44 | clean: |
---|
45 | rm -rf $(BUILD)/* |
---|
Note: See
TracBrowser
for help on using the repository browser.