diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-04-02 22:00:46 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-04-03 18:26:38 -0700 |
commit | 4095d5726ebabc663a6d5397d003773ee652818a (patch) | |
tree | b42844e6a6d8f283d0a31ae92ac5b0d32a669b7b /src/common/GNUmakefile | |
parent | 7a1b57a80346c1b5f2b2c5b8f0899167bf2fd9b1 (diff) | |
download | tmwa-4095d5726ebabc663a6d5397d003773ee652818a.tar.gz tmwa-4095d5726ebabc663a6d5397d003773ee652818a.tar.bz2 tmwa-4095d5726ebabc663a6d5397d003773ee652818a.tar.xz tmwa-4095d5726ebabc663a6d5397d003773ee652818a.zip |
Rewrite make system to be optimal
Diffstat (limited to 'src/common/GNUmakefile')
-rw-r--r-- | src/common/GNUmakefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/GNUmakefile b/src/common/GNUmakefile new file mode 100644 index 0000000..555f81e --- /dev/null +++ b/src/common/GNUmakefile @@ -0,0 +1,7 @@ +.SUFFIXES: +all: + make -C ../.. common +clean: + rm -r ../../obj/common/ +%:: + make -C ../.. obj/common/$@ |