X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;ds=sidebyside;f=scribe%2FMakefile;fp=scribe%2FMakefile;h=9f074019625342b4a7bbb155e4efe0dee9f10b27;hb=e52910fa1933db903b039a0f4f32b6470b3100d4;hp=0000000000000000000000000000000000000000;hpb=0574a0e135d4e2f9df5b0c1ccb00a61750ec1954;p=lmno.games diff --git a/scribe/Makefile b/scribe/Makefile new file mode 100644 index 0000000..9f07401 --- /dev/null +++ b/scribe/Makefile @@ -0,0 +1,12 @@ +# Defer all targets up to the upper-level +# +# This requires two recipes. The first to cover the case of no +# explicit target specifed (so when invoked as "make" we call "make" +# at the upper-level) and then a .DEFAULT recipe to pass any explicit +# target up as well, (so that an invocation of "make foo" results in a +# call to "make foo" above. +all: + $(MAKE) -C .. + +.DEFAULT: + $(MAKE) -C .. $@