]> andersk Git - moira.git/blob - clients/mmoira/Imakefile
ifdef on GDSS
[moira.git] / clients / mmoira / Imakefile
1 # $Header$
2 #
3 # Copyright 1991 by the Massachusetts Institute of Technology.
4 #
5 # For copying and distribution information,
6 # please see the file <mit-copyright.h>.
7 #
8 # Imakefile for moira client.
9 #
10
11 #ifdef GDSS
12 GDSSLIB = /mit/gdss/`machtype`/libgdss.a 
13 GDSSINC = -I/mit/gdss/include
14 #endif
15
16
17 SRCS=   main.c formup.c form_setup.c \
18         queries.c help.c stubs.c display.c tty.c parser.c
19 CODE=${SRCS} Imakefile mmoira.h data.h menus.txt menus.awk forms.txt \
20         forms.awk parser.h
21 SRCDIR=${SRCTOP}/clients/mmoira
22 OBJS = form_data.o form_setup.o menu_data.o main.o formup.o \
23         queries.o help.o stubs.o display.o tty.o parser.o
24 MOTIF = /mit/motif
25 INCLUDE= -I$(BUILDTOP)/include -I$(BUILDTOP)/lib -I$(MOTIF)/include \
26         -I/usr/athena/include ${GDSSINC} -I.
27 DEFINES= -D_NO_PROTO
28
29 program(mmoira, ${OBJS},${MR_LIBDEP} ${GDB_LIBDEP},${GDSSLIB} ${CLIBS} -L$(MOTIF)/`machtype`lib -lXm -lXt -lX11,${PROGDIR})
30
31 form_data.c: forms.txt forms.awk
32         awk -f forms.awk forms.txt > form_data.c
33
34 menu_data.c: menus.txt menus.awk
35         awk -f menus.awk menus.txt > menu_data.c
36
37 depend:: ${CODE} form_data.c form_setup.c
This page took 0.099624 seconds and 5 git commands to generate.