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