mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
17 lines
279 B
Makefile
17 lines
279 B
Makefile
include $(MODDIR)/make/plugin-defs.mk
|
|
include $(MODDIR)/make/defs.mk
|
|
|
|
all: $(PLUGIN_VERSION_LIB)
|
|
install:
|
|
clean: clean.local
|
|
distclean:
|
|
|
|
version.o: version.cpp
|
|
$(CPP) $(BUILD_CPPFLAGS) -o $@ -c $<
|
|
|
|
clean.local:
|
|
$(RM) -f version.o
|
|
|
|
$(PLUGIN_VERSION_LIB): version.o
|
|
ar r $@ $<
|
|
|