blob: bcdaa83c6e61fe21fbbd999bfb27003364e8bb5f (
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)
$(CXX) $(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
|