[matroska] r953 - trunk/libebml/make/mingw32
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mosu Date: 2004-11-19 15:17:21 +0300 (Fri, 19 Nov 2004) New Revision: 953 Modified: trunk/libebml/make/mingw32/Makefile Log: Compile libebml 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/libebml/make/mingw32/Makefile =================================================================== --- trunk/libebml/make/mingw32/Makefile 2004-11-17 14:51:26 UTC (rev 952) +++ trunk/libebml/make/mingw32/Makefile 2004-11-19 12:17:21 UTC (rev 953) @@ -4,7 +4,7 @@ # Normally libebml is built as a static library. # Uncomment this if you want a shared library instead. # ATTENTION: If your app uses this DLL you have to define EBML_DLL ! -#SHARED = yes +SHARED = yes # Compile with debug information? #DEBUG = yes @@ -41,8 +41,11 @@ lib: $(LIBS) clean: - rm -f $(OBJ) libebml.a libebml.dll libebml.dll.a .depend + rm -f $(OBJ) libebml.a libebml.dll libebml.dll.a +distclean dist-clean: clean + rm -f .depend + libebml.a: $(OBJ) ar r $@ $(OBJ) ranlib $@