comparison leo-obj/Makefile @ 132:af0f8bfa3b3a

leo-obj/Makefile: created
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 07 Apr 2014 00:59:34 +0000
parents
children 8754c410c10d
comparison
equal deleted inserted replaced
131:1209ef15374f 132:af0f8bfa3b3a
1 OBJDIRS=main
2 SUBDIR= ${OBJDIRS} tool
3
4 all: ${SUBDIR}
5
6 ${OBJDIRS}: tool
7
8 ${SUBDIR}: FRC
9 cd $@; ${MAKE} ${MFLAGS}
10
11 clean: FRC
12 rm -f a.out core errs
13 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
14
15 FRC: