2021-06-02 08:49:27 +00:00
|
|
|
# WorldSpawn Makefile
|
|
|
|
|
2021-06-06 17:08:06 +00:00
|
|
|
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 = \
|
|
|
|
cmdlib.o
|
|
|
|
|
|
|
|
# binary target
|
|
|
|
../libcmdlib.a: $(WS_OBJS)
|
|
|
|
ar rcs $@ $(WS_OBJS)
|
|
|
|
|
|
|
|
# object files
|
|
|
|
cmdlib.o: cmdlib.cpp
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f *.o ../libcmdlib.a
|