diff options
author | Steven Barth <steven@midlink.org> | 2008-04-11 19:30:16 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-11 19:30:16 +0000 |
commit | d0acd217b18cde532d50a45e74e05f60aeb6e4b4 (patch) | |
tree | c3ca7e97f6c0d469bfe42a8eb6aad1c81ddb26aa /module/admin-core | |
parent | 4597237da20b4d39c7e24ba35d3315b77258bb7b (diff) |
* Guess what... fixed Makefile...
Diffstat (limited to 'module/admin-core')
-rw-r--r-- | module/admin-core/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/admin-core/Makefile b/module/admin-core/Makefile index 84c2277ddb..708c1c2398 100644 --- a/module/admin-core/Makefile +++ b/module/admin-core/Makefile @@ -18,15 +18,15 @@ all: compile depends: mkdir -p $(OUTDIRS) - for i in $(CPFILES); do if [ -f "$i" ]; then i=$$(echo $$i | cut -d/ -f2-); \ + for i in $(CPFILES); do if [ -f "$$i" ]; then i=$$(echo $$i | cut -d/ -f2-); \ mkdir -p dist/$$(dirname $$i); cp src/$$i dist/$$i; fi; done compile: depends - for i in $(INFILES); do if [ -f "$i" ]; then i=$$(echo $$i | cut -d/ -f2-); \ + for i in $(INFILES); do if [ -f "$$i" ]; then i=$$(echo $$i | cut -d/ -f2-); \ mkdir -p dist/$$(dirname $$i); $(LUAC) $(LUAC_OPTIONS) -o dist/$$i src/$$i; fi; done source: depends - for i in $(INFILES); do if [ -f "$i" ]; then i=$$(echo $$i | cut -d/ -f2-); \ + for i in $(INFILES); do if [ -f "$$i" ]; then i=$$(echo $$i | cut -d/ -f2-); \ mkdir -p dist/$$(dirname $$i); cp src/$$i dist/$$i; fi; done |