]> andersk Git - moira.git/blame - clients/mrtest/Imakefile
*** empty log message ***
[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
0631d2a6 15
c69831ee 16program(mrtest, ${OBJS},${MR_LIBDEP} ${GDB_LIBDEP}, ${CLIBS} ${SS_LIB},${ETCDIR})
0631d2a6 17mk_cmds(test_cmds)
b0f2a4d4 18
47df1bf1 19tst.o: mr_err_array.h
b0f2a4d4 20
21mr_err_array.h:
22 ${RM} mr_err_array.h
23 echo "char * MR_ERR_ARRAY[] = {" > mr_err_array.h
24 tr -d , < ../../lib/mr_et.et \
25 | awk '$$1=="ec" {printf("\"%s\",\n", $$2)}' >> mr_err_array.h
26 echo "};" >> mr_err_array.h
27
28clean::
29 ${RM} mr_err_array.h
This page took 0.061869 seconds and 5 git commands to generate.