From 1c244553af3e62aa94051328ec515e989528ec91 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Fri, 19 Feb 2010 15:17:59 -0500 Subject: [PATCH] including project dir in library path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8cb8676..0b67d3f 100644 --- a/Makefile +++ b/Makefile @@ -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,