]> andersk Git - moira.git/blame_incremental - clients/mrtest/Imakefile
renamed test.c to tst.c to avoid Imake problems
[moira.git] / clients / mrtest / Imakefile
... / ...
CommitLineData
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
11SRCS= mrtest.c tst.c comp.c
12SRCDIR=${SRCTOP}/clients/mrtest
13CODE=${SRCS} Imakefile test_cmds.ct blah.h
14OBJS= mrtest.o test_cmds.o tst.o comp.o
15INCLUDE= -I$(BUILDTOP)/include -I$(BUILDTOP)/lib -I$(BUILDTOP)/util/ss
16
17program(mrtest, ${OBJS},${MR_LIBDEP} ${GDB_LIBDEP}, ${CLIBS} ${SS_LIB},${PROGDIR})
18mk_cmds(test_cmds)
19
20tst.o: mr_err_array.h
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.10806 seconds and 5 git commands to generate.