including project dir in library path

This commit is contained in:
Dan Buch 2010-02-19 15:17:59 -05:00
parent 62ab91db37
commit 1c244553af

View File

@ -22,7 +22,7 @@ SWCS = $(patsubst %.as,%.swc,$(wildcard com/ag/*.as))
# define an implicit build rule for any file matching %.swf,
# using the $< (input) and $@ (output) automatic variables
%.swf : %.mxml
$(MXMLC) $< -warnings -l+=./com/ag -output $@
$(MXMLC) $< -warnings -l+=./com/ag -l+=$(dir $<) -output $@
# define an implicit build rule for any file matching %.swc,