# $Header$ # # Copyright 1991 by the Massachusetts Institute of Technology. # # For copying and distribution information, # please see the file . # # Imakefile for moira client. # #ifdef GDSS GDSSLIB = /mit/gdss/`machtype`/libgdss.a GDSSINC = -I/mit/gdss/include #endif SRCS= main.c formup.c form_setup.c \ queries.c help.c stubs.c display.c tty.c parser.c CODE=${SRCS} Imakefile mmoira.h data.h menus.txt menus.awk forms.txt \ forms.awk parser.h SRCDIR=${SRCTOP}/clients/mmoira OBJS = form_data.o form_setup.o menu_data.o main.o formup.o \ queries.o help.o stubs.o display.o tty.o parser.o MOTIF = /mit/motif INCLUDE= -I$(BUILDTOP)/include -I$(BUILDTOP)/lib -I$(MOTIF)/include \ -I/usr/athena/include ${GDSSINC} -I. DEFINES= -D_NO_PROTO program(mmoira, ${OBJS},${MR_LIBDEP} ${GDB_LIBDEP},${GDSSLIB} ${CLIBS} -L$(MOTIF)/`machtype`lib -lXm -lXt -lX11,${PROGDIR}) form_data.c: forms.txt forms.awk awk -f forms.awk forms.txt > form_data.c menu_data.c: menus.txt menus.awk awk -f menus.awk menus.txt > menu_data.c depend:: ${CODE} form_data.c form_setup.c