# HG changeset patch # User Mychaela Falconia # Date 1716577144 0 # Node ID 85662304252e2917c7f6261e175ea3ee9d1ac2b8 # Parent 0cb57782715edbb127cf46654057701c81558be3 add top Makefile diff -r 0cb57782715e -r 85662304252e Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Fri May 24 18:59:04 2024 +0000 @@ -0,0 +1,14 @@ +SUBDIR= trau-decode trau-files + +all: ${SUBDIR} + +trau-files: trau-decode + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +FRC: