aboutsummaryrefslogtreecommitdiff
path: root/Makefile.pd_darwin
blob: 7dad28d274124dec22ee4590ec80538d6e238f71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
CONFIGFILE = Makefile.config_darwin
include $(CONFIGFILE)

current: 
	make -C system 
	make -C modules
	make -C modules++ 

	rm -f $(LIBNAME)
	$(CPLUSPLUS) $(LIBFLAGS) -o $(LIBNAME) system/*.o modules/*.o modules++/*.o -lm
#	strip --strip-unneeded $(LIBNAME)

clean:
	make -C include clean
	make -C modules clean
	make -C modules++ clean
	make -C system clean
	rm -f $(LIBNAME)
	rm -f *~

tags:
	etags --language=auto include/*.h system/*.c modules/*.c modules++/*.cpp

tagsclean:
	rm -f TAGS