1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#include "../topdir.mk"
OBJS = dialogs.o filesel.o forminput.o embed.o fonts.o \
Animator.o Table.o Canvas.o Richtext.o Siag.o \
Pw.o Egon.o Textentry.o Vsep.o Hsep.o Hbox.o \
DragAndDrop.o icon.o xcommon.o input.o tooltip.o plugin.o
SRCS = dialogs.c filesel.c forminput.c embed.c fonts.c \
Animator.c Table.c Canvas.c Richtext.c Siag.c \
Pw.c Egon.c Textentry.c Vsep.c Hsep.c Hbox.c \
DragAndDrop.c icon.c xcommon.c input.c tooltip.c plugin.c
EXTRA_DEFINES = -DSIAGHOME=\"$(SIAG_HOME)\" \
-DSIAGDOCS=\"$(SIAG_DOCS)\" \
-DSIAGHELP=\"$(SIAG_HELP)\" $(DEBUG)
NormalLibraryTarget(xcommon, $(OBJS))
DependTarget()
clean::
$(RM) Makefile
install::
@echo "Installing support files for xcommon"
$(MKDIRHIER) $(DESTDIR)$(SIAG_HOME)/xcommon
$(CP) *.scm $(DESTDIR)$(SIAG_HOME)/xcommon
$(MKDIRHIER) $(DESTDIR)$(SIAG_DOCS)/xcommon/docs
$(CP) form.scm $(DESTDIR)$(SIAG_DOCS)/xcommon
(cd docs; $(CP) * $(DESTDIR)$(SIAG_DOCS)/xcommon/docs)
|