mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
13 lines
241 B
Makefile
13 lines
241 B
Makefile
include $(MODDIR)/make/plugin-defs.mk
|
|
include $(MODDIR)/make/defs.mk
|
|
|
|
all: $(PLUGIN_VERSION_LIB)
|
|
clean: thisclean
|
|
version.o: version.cpp
|
|
g++ $(CPPFLAGS) -o $@ -c $<
|
|
thisclean:
|
|
rm -f version.o
|
|
|
|
$(PLUGIN_VERSION_LIB): version.o
|
|
ar r $@ $<
|
|
|