diff options
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 - - |