# HG changeset patch # User Michael Spacefalcon # Date 1396832374 0 # Node ID af0f8bfa3b3ae30df50246e14152f4184c9bc470 # Parent 1209ef15374f44de751051ea08894311e218d677 leo-obj/Makefile: created diff -r 1209ef15374f -r af0f8bfa3b3a leo-obj/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/leo-obj/Makefile Mon Apr 07 00:59:34 2014 +0000 @@ -0,0 +1,15 @@ +OBJDIRS=main +SUBDIR= ${OBJDIRS} tool + +all: ${SUBDIR} + +${OBJDIRS}: tool + +${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: