]> andersk Git - moira.git/blame - clients/mrtest/Imakefile
renamed test.c to tst.c to avoid Imake problems
[moira.git] / clients / mrtest / Imakefile
CommitLineData
0631d2a6 1# $Header$
2#
3# Copyright 1990 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 mrtest.
9#
10
47df1bf1 11SRCS= mrtest.c tst.c comp.c
19766ae7 12SRCDIR=${SRCTOP}/clients/mrtest
b0f2a4d4 13CODE=${SRCS} Imakefile test_cmds.ct blah.h
47df1bf1 14OBJS= mrtest.o test_cmds.o tst.o comp.o
19766ae7 15INCLUDE= -I$(BUILDTOP)/include -I$(BUILDTOP)/lib -I$(BUILDTOP)/util/ss
0631d2a6 16
60bdd6a1 17program(mrtest, ${OBJS},${MR_LIBDEP} ${GDB_LIBDEP}, ${CLIBS} ${SS_LIB},${PROGDIR})
0631d2a6 18mk_cmds(test_cmds)
b0f2a4d4 19
47df1bf1 20tst.o: mr_err_array.h
b0f2a4d4 21
22mr_err_array.h:
23 ${RM} mr_err_array.h
24 echo "char * MR_ERR_ARRAY[] = {" > mr_err_array.h
25 tr -d , < ../../lib/mr_et.et \
26 | awk '$$1=="ec" {printf("\"%s\",\n", $$2)}' >> mr_err_array.h
27 echo "};" >> mr_err_array.h
28
29clean::
30 ${RM} mr_err_array.h
This page took 0.066449 seconds and 5 git commands to generate.