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