diff options
author | Tom Schouten <doelie@users.sourceforge.net> | 2003-09-12 22:26:57 +0000 |
---|---|---|
committer | Tom Schouten <doelie@users.sourceforge.net> | 2003-09-12 22:26:57 +0000 |
commit | 494a07a361fe4ee0e54f77468a976b1a77818770 (patch) | |
tree | b784b32b2a29e379c6ae5947cdcdcdaadde72b5e /Makefile.pd_darwin | |
parent | 9f8757ccf742d984bd1c1a5d1e5906e9fd50784e (diff) |
creb 0.9.0
svn path=/trunk/externals/creb/; revision=956
Diffstat (limited to 'Makefile.pd_darwin')
-rw-r--r-- | Makefile.pd_darwin | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Makefile.pd_darwin b/Makefile.pd_darwin deleted file mode 100644 index bcdaa83..0000000 --- a/Makefile.pd_darwin +++ /dev/null @@ -1,27 +0,0 @@ -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 - - |