comparison Makefile @ 1:ad9aa1881a70

* Add most basic load-library-and-list-plugins host
author cannam
date Fri, 31 Mar 2006 15:00:29 +0000
parents 6479539d1b32
children c66551966b5f
comparison
equal deleted inserted replaced
0:6479539d1b32 1:ad9aa1881a70
1 1
2 2
3 all: 3 all: examples/plugins.so host/simplehost test
4
5 examples/plugins.so:
4 $(MAKE) -C examples all 6 $(MAKE) -C examples all
7
8 host/simplehost:
9 $(MAKE) -C host all
10
11 test:
12 $(MAKE) -C host test
5 13
6 clean: 14 clean:
7 $(MAKE) -C examples clean 15 $(MAKE) -C examples clean
8 16
9 distclean: 17 distclean:
10 $(MAKE) -C examples distclean 18 $(MAKE) -C examples distclean
19 $(MAKE) -C host distclean
11 rm -f *~ *.bak $(TARGET) 20 rm -f *~ *.bak $(TARGET)
12 21