mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
Rename the omnipresent MODDIR variable to JWBDIR, since that's more to the point. Signed-off-by: Jan Lindemann <jan@janware.com>
17 lines
331 B
Makefile
17 lines
331 B
Makefile
include $(JWBDIR)/make/plugin-defs.mk
|
|
include $(JWBDIR)/make/defs.mk
|
|
include $(JWBDIR)/make/defs-cpp.mk
|
|
|
|
all: $(PLUGIN_VERSION_LIB)
|
|
install:
|
|
clean: clean.local
|
|
distclean:
|
|
|
|
version.o: version.cpp
|
|
$(CXX) $(FINAL_CXXFLAGS) $(FINAL_CPPFLAGS) -o $@ -c $<
|
|
|
|
clean.local:
|
|
$(RM) -f version.o
|
|
|
|
$(PLUGIN_VERSION_LIB): version.o
|
|
ar r $@ $<
|