plugin-version.mk, plugin.mk, smart-selection.mk: Add files

This commit is contained in:
Jan Lindemann 2006-08-27 18:51:02 +00:00 committed by Jan Lindemann
commit d7150c1fef
3 changed files with 40 additions and 4 deletions

13
make/plugin-version.mk Normal file
View file

@ -0,0 +1,13 @@
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 $@ $<