File: Imakefile

package info (click to toggle)
siag 3.0.6-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,652 kB
  • ctags: 6,202
  • sloc: ansic: 40,351; lisp: 3,435; sh: 143; makefile: 112
file content (30 lines) | stat: -rw-r--r-- 947 bytes parent folder | download
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)