]> git.llucax.com Git - software/posixx.git/blob - Makefile
Avoid rebuilding of doc, (mem)test and install targets
[software/posixx.git] / Makefile
1
2
3 # prefix for installing the binaries and headers
4 prefix=/usr/local
5
6
7
8 default: all
9
10 all: doc test memtest
11
12 install:
13         $(MAKE) -C src $@
14
15 doc:
16         $(MAKE) -C doc $@
17
18 test memtest:
19         $(MAKE) -C test $@
20
21 clean:
22         $(MAKE) -C src $@
23         $(MAKE) -C doc $@
24         $(MAKE) -C test $@
25
26 .PHONY: default all install doc test memtest clean
27
28