# HG changeset patch # User Mychaela Falconia # Date 1599455615 0 # Node ID fddb020e9b68bd911bf0c8dd5348b7cf24ba8e15 # Parent d3eb3790386d0ab8d9a60a518dac7a2de9fd777c netdiff/Makefile added diff -r d3eb3790386d -r fddb020e9b68 netdiff/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/netdiff/Makefile Mon Sep 07 05:13:35 2020 +0000 @@ -0,0 +1,16 @@ +SUBDIR= convert match renpart + +all: ${SUBDIR} + +${SUBDIR}: FRC + cd $@; make ${MFLAGS} + +install: + -for i in ${SUBDIR}; do \ + (cd $$i; make ${MFLAGS} install); done + +clean: FRC + rm -f a.out core *.s *.o errs + for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done + +FRC: