mirror of https://github.com/AxioDL/tinyxml2.git
Merge pull request #443 from TheZoc/patch-1
Standardized static library output name
This commit is contained in:
commit
2fe47ead77
8
Makefile
8
Makefile
|
@ -2,17 +2,17 @@ all: xmltest staticlib
|
|||
|
||||
rebuild: clean all
|
||||
|
||||
xmltest: xmltest.cpp tinyxml2.a
|
||||
xmltest: xmltest.cpp libtinyxml2.a
|
||||
|
||||
clean:
|
||||
$(RM) *.o xmltest tinyxml2.a
|
||||
$(RM) *.o xmltest libtinyxml2.a
|
||||
|
||||
test: clean xmltest
|
||||
./xmltest
|
||||
|
||||
staticlib: tinyxml2.a
|
||||
staticlib: libtinyxml2.a
|
||||
|
||||
tinyxml2.a: tinyxml2.o
|
||||
libtinyxml2.a: tinyxml2.o
|
||||
$(AR) $(ARFLAGS)s $@ $^
|
||||
|
||||
tinyxml2.o: tinyxml2.cpp tinyxml2.h
|
||||
|
|
Loading…
Reference in New Issue