source: releases/0.2.2/Makefile @ 60

Last change on this file since 60 was 39, checked in by tim, 19 years ago

small cleanups, added some free() calls.

fixed top-level Makefile to clean properly.

  • Property svn:keywords set to Id
File size: 817 bytes
Line 
1# $Id: Makefile 39 2005-07-31 15:15:03Z tim $
2
3# Installation prefixes.  Change to install elsewhere.
4
5PREFIX=/usr/local
6BIN_PREFIX=$(PREFIX)/bin
7DOC_PREFIX=$(PREFIX)/share/doc/reglookup
8MAN_PREFIX=$(PREFIX)/man
9
10################################################################################
11
12CC=gcc
13OPTS=-std=gnu89 -pedantic -Wall
14
15BUILD=$(CURDIR)/build
16BUILD_BIN=$(BUILD)/bin
17BUILD_DOC=$(BUILD)/doc
18
19BUILD_TREE=$(BUILD_BIN) $(BUILD_DOC)
20SUB_DIRS=lib src doc
21
22FILES=$(REGLOOKUP)
23.PHONY: $(SUB_DIRS) clean
24export
25
26
27all: $(BUILD_TREE) $(SUB_DIRS)
28
29#XXX: This should be more generalized.
30install: 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
44clean:
45        $(MAKE) -C src clean
46        $(MAKE) -C lib clean
47        rm -rf $(BUILD)/*
Note: See TracBrowser for help on using the repository browser.