root/trunk/Makefile
| Revision 21, 285 bytes (checked in by jtang, 8 months ago) |
|---|
| Line | |
|---|---|
| 1 | SUBDIRS = libsipc |
| 2 | TOP_BUILDDIR := $(shell pwd) |
| 3 | |
| 4 | all install clean: |
| 5 | for i in $(SUBDIRS); do \ |
| 6 | ($(MAKE) -C $$i $@) || exit 1; \ |
| 7 | done |
| 8 | |
| 9 | dist: |
| 10 | -rm -rf /tmp/libsipc |
| 11 | svn export libsipc /tmp/libsipc |
| 12 | tar zcf $(TOP_BUILDDIR)/libsipc.tar.gz -C /tmp libsipc |
| 13 | |
| 14 | .PHONY: all install clean dist |
Note: See TracBrowser for help on using the browser.
