mirror of
https://github.com/vgough/encfs.git
synced 2024-11-24 17:03:13 +01:00
57ff0e2fe8
git-subtree-dir: vendor/github.com/leethomason/tinyxml2 git-subtree-split: 02d2764fd794422c6d3c86cebe1c892e5a592d23
20 lines
270 B
Makefile
20 lines
270 B
Makefile
all: xmltest staticlib
|
|
|
|
rebuild: clean all
|
|
|
|
xmltest: xmltest.cpp libtinyxml2.a
|
|
|
|
clean:
|
|
$(RM) *.o xmltest libtinyxml2.a
|
|
|
|
test: clean xmltest
|
|
./xmltest
|
|
|
|
staticlib: libtinyxml2.a
|
|
|
|
libtinyxml2.a: tinyxml2.o
|
|
$(AR) $(ARFLAGS)s $@ $^
|
|
|
|
tinyxml2.o: tinyxml2.cpp tinyxml2.h
|
|
|