Initial commit of pristine erwise source
[erwise] / erwise / Imakefile
1 #
2 #
3 #
4
5            OBJS = main.o Setup.o TopLevel.o Page.o Misc.o Help.o        \
6                   Print.o Config.o
7            SRCS = main.c Setup.c TopLevel.c Page.c Misc.c Help.c        \
8                   Print.c Config.c
9
10           XLDIR = ../Xl
11           HTDIR = ../HText
12           CLDIR = ../Cl
13          WWWDIR = $(CLDIR)/WWWLibrary
14           UIDIR = ../Ui
15
16      MOTIF_HDRS = -I/p/motif/include
17     ERWISE_HDRS = -I$(XLDIR) -I$(HTDIR) -I$(CLDIR) -I$(WWWDIR) -I$(UIDIR)
18         DEFINES = $(ERWISE_HDRS) $(MOTIF_HDRS)
19
20 LOCAL_LIBRARIES = -L$(WWWDIR) -lWWW     \
21                   -L$(UIDIR) -lUi       \
22                   -L$(CLDIR) -lCl       \
23                   -L$(XLDIR) -lXl       \
24                   -L$(HTDIR) -lHt
25
26          LDLIBS = -L/p/motif/lib -lXm -lXt -lX11
27
28 ComplexProgramTarget(erwise)