comparison netdiff/Makefile @ 141:fddb020e9b68

netdiff/Makefile added
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 07 Sep 2020 05:13:35 +0000
parents
children 295b1e4534bf
comparison
equal deleted inserted replaced
140:d3eb3790386d 141:fddb020e9b68
1 SUBDIR= convert match renpart
2
3 all: ${SUBDIR}
4
5 ${SUBDIR}: FRC
6 cd $@; make ${MFLAGS}
7
8 install:
9 -for i in ${SUBDIR}; do \
10 (cd $$i; make ${MFLAGS} install); done
11
12 clean: FRC
13 rm -f a.out core *.s *.o errs
14 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
15
16 FRC: