root/openpgpsdk/trunk/Makefile
| Revision 123 (checked in by rachel, 8 years ago) |
|---|
| Line | |
|---|---|
| 1 | # |
| 2 | # $Id$ |
| 3 | # |
| 4 | |
| 5 | # order of build of subdirs is important |
| 6 | # |
| 7 | SUBDIRS=src examples |
| 8 | |
| 9 | CONFIGURE=$(PWD)/configure |
| 10 | |
| 11 | default: Makefiles all |
| 12 | |
| 13 | Makefiles: |
| 14 | @for d in $(SUBDIRS); do \ |
| 15 | (cd $$d; make CONFIGURE=$(CONFIGURE) Makefile); \ |
| 16 | done |
| 17 | |
| 18 | all: |
| 19 | @for d in $(SUBDIRS); do \ |
| 20 | (cd $$d; make all); \ |
| 21 | done |
| 22 | |
| 23 | clean: |
| 24 | @for d in $(SUBDIRS); do \ |
| 25 | (cd $$d; make clean); \ |
| 26 | done |
| 27 |
Note: See TracBrowser for help on using the browser.
