* Guess what... fixed Makefile...
This commit is contained in:
parent
4597237da2
commit
d0acd217b1
3 changed files with 7 additions and 7 deletions
|
@ -21,7 +21,7 @@ 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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -19,15 +19,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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue