diff anagram/guisupport/DEFS.mk @ 0:13d2b8934445

Import AnaGram (near-)release tree into Mercurial.
author David A. Holland
date Sat, 22 Dec 2007 17:52:45 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/anagram/guisupport/DEFS.mk	Sat Dec 22 17:52:45 2007 -0500
@@ -0,0 +1,56 @@
+include $(BUILDTOP)/config.mk
+
+SYNS=profile.syn
+HELPGEN=$(BUILDTOP)/helpgen/helpgen$(HOST_EXEEXT)
+
+# Sources.
+SRCS=\
+	action.cpp \
+	anom.cpp \
+	auxmenus.cpp \
+	brt.cpp \
+	charsdc.cpp \
+	conflictdc.cpp \
+	conflicttrc.cpp \
+	coveragedc.cpp \
+	dc.cpp \
+	errordc.cpp \
+	ftpardc.cpp \
+	gsinst.cpp \
+	help.cpp \
+	items.cpp \
+	keytabdc.cpp \
+	proctabdc.cpp \
+	profile.cpp \
+	readprofile.cpp \
+	redmenudc.cpp \
+	ruletabdc.cpp \
+	stexpdc.cpp \
+	symtabdc.cpp \
+	tokentabdc.cpp \
+	tracedc.cpp \
+	wdata.cpp \
+	windowreg.cpp \
+	wm1.cpp \
+	ws.cpp
+
+LIB=guisupport
+LIBTYPE=LIB
+
+INCDIRS=. $(TOP)/anagram/support $(TOP)/anagram/agcore \
+	$(TOP)/anagram/guisupport $(TOP)/anagram/$(GUI) \
+	$(TOP)/anagram/ag1
+
+include $(TOP)/mk/lib.mk
+
+beforeall: helpdata.h
+helpdata.h: $(SRCDIR)/helpdata.src $(HELPGEN)
+	@echo '        [HELPGEN] helpdata.src'
+	@$(HELPGEN) $(SRCDIR)/helpdata.src helpdata.h
+
+clean distclean: helpclean
+helpclean:
+	@echo '        [RM]      helpdata.h'
+	@rm -f helpdata.h
+
+.PHONY: beforeall clean distclean helpclean