]> andersk Git - moira.git/blob - clients/mmoira/Imakefile
Initial revision
[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 SRCS=   main.c formup.c form_setup.c \
12         queries.c help.c stubs.c display.c tty.c parser.c
13 CODE=${SRCS} Imakefile mmoira.h data.h menus.txt menus.awk forms.txt \
14         forms.awk parser.h
15 SRCDIR=${SRCTOP}/clients/mmoira
16 OBJS = form_data.o form_setup.o menu_data.o main.o formup.o \
17         queries.o help.o stubs.o display.o tty.o parser.o
18 MOTIF = /mit/motif
19 INCLUDE= -I$(BUILDTOP)/include -I$(BUILDTOP)/lib -I$(MOTIF)/include \
20         -I/usr/athena/include -I/mit/gdss/include -I.
21 DEFINES= -DGDSS -D_NO_PROTO
22
23 program(mmoira, ${OBJS},${MR_LIBDEP} ${GDB_LIBDEP},/mit/gdss/`machtype`/libgdss.a ${CLIBS} -L$(MOTIF)/`machtype`lib -lXm -lXt -lX11,${PROGDIR})
24
25 form_data.c: forms.txt forms.awk
26         awk -f forms.awk forms.txt > form_data.c
27
28 menu_data.c: menus.txt menus.awk
29         awk -f menus.awk menus.txt > menu_data.c
30
31 depend:: ${CODE} form_data.c form_setup.c
This page took 0.036819 seconds and 5 git commands to generate.