[matroska] r1102 - trunk/libebml/make/linux
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mosu Date: 2005-03-19 13:24:21 +0300 (Sat, 19 Mar 2005) New Revision: 1102 Modified: trunk/libebml/make/linux/Makefile Log: Provide separate make targets for the static and the shared library. Modified: trunk/libebml/make/linux/Makefile =================================================================== --- trunk/libebml/make/linux/Makefile 2005-03-19 10:15:20 UTC (rev 1101) +++ trunk/libebml/make/linux/Makefile 2005-03-19 10:24:21 UTC (rev 1102) @@ -68,10 +68,12 @@ COMPILEFLAGS=$(WARNINGFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(DEBUGFLAGS) $(INCLUDE) DEPENDFLAGS = $(CXXFLAGS) $(INCLUDE) -all: $(LIBRARY) $(LIBRARY_SO) +all: staticlib sharedlib -lib library: $(LIBRARY) $(LIBRARY_SO) +staticlib: $(LIBRARY) +sharedlib: $(LIBRARY_SO) + # Build rules %.o: %$(EXTENSION) $(CXX) -c $(COMPILEFLAGS) -o $@ $<