1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# common dependencies and rules for building DBMI driver
PACKAGE = "grassmods"
include $(MODULE_TOPDIR)/include/Make/Vars.make
include $(MODULE_TOPDIR)/include/Make/Rules.make
include $(MODULE_TOPDIR)/include/Make/Html.make
include $(MODULE_TOPDIR)/include/Make/Compile.make
dbmi: $(DBDRIVERDIR)/$(PGM)$(EXE) db_html
db_html: $(HTMLDIR)/grass-$(PGM).html $(MANDIR)/grass-$(PGM).$(MANSECT)
$(DBDRIVERDIR)/$(PGM)$(EXE): $(ARCH_OBJS) $(DEPENDENCIES)
$(call linker)
.PHONY: dbmi db_html
|