Changeset 46 for trunk/src/kmk/testcase
- Timestamp:
- Apr 4, 2003, 2:03:50 AM (22 years ago)
- Location:
- trunk/src/kmk/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/testcase/parent.kMk
r45 r46 1 # infernece rules. 2 .SUFFIXES: .c .o .obj 3 .c.obj: 4 echo compiling $< into $@ for $(.PARENTS) while .IMPSRC is $(.IMPSRC) 1 5 6 # the rules/targets. 2 7 all: parent 3 8 9 parent: child child2 10 echo "parent: $(.PARENTS)" 4 11 5 parent: child 6 echo parent: ${.PARENTS} 12 child: arch.obj 13 echo "child: .PARENTS = $(.PARENTS)" 14 echo "child: .TARGET = $(.TARGET)" 15 echo "child: .IMPSRC = $(.IMPSRC)" 7 16 8 17 9 child: 10 echo child: ${.PARENTS} 11 12 18 child2: arch.obj hash.obj 19 echo "child2: .PARENTS = $(.PARENTS)" 20 echo "child2: .TARGET = $(.TARGET)" 21 echo "child2: .IMPSRC = $(.IMPSRC)" 22 -
trunk/src/kmk/testcase/smoketest.kMk
r45 r46 2 2 3 3 4 notall: # comment4 notall: # comment 5 5 echo notall, but it's the first rule. 6 6 7 8 #.MAIN: all 7 9 8 10 all:
Note:
See TracChangeset
for help on using the changeset viewer.