./0040755000175000017500000000000007152613034007716 5ustar holtholt./Makeppfile0100644000175000017500000000116707152612345011724 0ustar holtholt# # Test specifying additional dependencies on a line that does not have any # actions. # .PHONY: all all: c d f c: a cat $^ > $@ # # This tests the horrible idiom whereby a command with several targets is # sometimes split up so that one target depends on the other, in order to # get around make's stupid restriction of one target per command. # a: b b: echo a > a echo b > b # # Test depending on a wildcard. # d: [12].c d: e cat $^ > $@ 1.c 2.c 3.c 4.c: echo $@ > $@ e: echo e > $@ # # Test depending on a wildcard when there's no rule. # f: g [34].c g: echo g > g echo f > f $(phony clean): rm -f ? ?.c ./answers/0040755000175000017500000000000007152612637011410 5ustar holtholt./answers/a0100644000175000017500000000000207152612631011532 0ustar holtholta ./answers/b0100644000175000017500000000000207152612631011533 0ustar holtholtb ./answers/c0100644000175000017500000000000207152612631011534 0ustar holtholta ./answers/d0100644000175000017500000000001207152612631011536 0ustar holtholte 1.c 2.c ./answers/e0100644000175000017500000000000207152612631011536 0ustar holtholte ./answers/1.c0100644000175000017500000000000407152612631011675 0ustar holtholt1.c ./answers/2.c0100644000175000017500000000000407152612631011676 0ustar holtholt2.c ./answers/3.c0100644000175000017500000000000407152612631011677 0ustar holtholt3.c ./answers/4.c0100644000175000017500000000000407152612631011700 0ustar holtholt4.c ./answers/n_files0100644000175000017500000000000207152611162012727 0ustar holtholt9 ./answers/f0100644000175000017500000000000207152612631011537 0ustar holtholtf ./answers/g0100644000175000017500000000000207152612631011540 0ustar holtholtg