vmap/libs/container/Makefile

22 lines
412 B
Makefile
Raw Normal View History

2021-06-02 08:49:27 +00:00
# WorldSpawn Makefile
LIB_CFLAGS=$(CFLAGS) -I../../include -I../../libs
2021-06-02 08:49:27 +00:00
DO_CXX=$(CXX) -static -fPIC $(LIB_CFLAGS) -o $@ -c $<
.cpp.o:
$(DO_CXX)
WS_OBJS = \
array.o hashtable.o
# binary target
../libcontainer.a: $(WS_OBJS)
ar rcs $@ $(WS_OBJS)
# object files
array.o: array.cpp array.h cache.h container.h hashfunc.h
hashtable.o: hashtable.cpp hashtable.h stack.h
clean:
-rm -f *.o ../libcontainer.a