[matroska] r954 - trunk/libmatroska/make/mingw32
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mosu Date: 2004-11-19 15:17:47 +0300 (Fri, 19 Nov 2004) New Revision: 954 Modified: trunk/libmatroska/make/mingw32/Makefile Log: Compile libmatroska as a DLL by default (is anyone except me using this mingw Makefile anyway?). Do not remove the dependency file on "make clean". Modified: trunk/libmatroska/make/mingw32/Makefile =================================================================== --- trunk/libmatroska/make/mingw32/Makefile 2004-11-19 12:17:21 UTC (rev 953) +++ trunk/libmatroska/make/mingw32/Makefile 2004-11-19 12:17:47 UTC (rev 954) @@ -4,7 +4,7 @@ # Normally libmatroska is built as a static library. # Uncomment this if you want a shared library instead. # ATTENTION: Your app has to define MATROSKA_DLL ! -#SHARED = yes +SHARED = yes # Compile with debug information? #DEBUG = yes @@ -54,8 +54,11 @@ tests: $(TESTS) clean: - rm -f $(OBJ) libmatroska.* *.exe ../../test/mux/*.o ../../test/tags/*.o .depend + rm -f $(OBJ) libmatroska.* *.exe ../../test/mux/*.o ../../test/tags/*.o +distclean dist-clean: clean + rm -f .depend + libmatroska.a: $(OBJ) ar r $@ $(OBJ) ranlib $@