simplifying mxml/as crap, removing com/ag/ package

cat-town
Dan Buch 15 years ago
parent f8642e650f
commit efd3fe2dbf

@ -13,7 +13,7 @@ package
import mx.rpc.events.ResultEvent; import mx.rpc.events.ResultEvent;
import mx.rpc.http.HTTPService; import mx.rpc.http.HTTPService;
import com.ag.RequestParams; import RequestParams;
public class DataGridApp extends Application public class DataGridApp extends Application
{ {

@ -1,4 +1,4 @@
package com.ag package
{ {
public class RequestParams public class RequestParams
{ {

@ -15,14 +15,10 @@ COMPC ?= compc
SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml)) SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml))
# define all target swc paths (same as with swf paths above)
SWCS = $(patsubst %.as,%.swc,$(wildcard com/ag/*.as))
# define an implicit build rule for any file matching %.swf, # define an implicit build rule for any file matching %.swf,
# using the $< (input) and $@ (output) automatic variables # using the $< (input) and $@ (output) automatic variables
%.swf : %.mxml %.swf : %.mxml
$(MXMLC) $< -warnings -l+=./com/ag -l+=$(dir $<) -output $@ $(MXMLC) $< -warnings -l+=$(dir $<) -output $@
# define an implicit build rule for any file matching %.swc, # define an implicit build rule for any file matching %.swc,
@ -33,7 +29,7 @@ SWCS = $(patsubst %.as,%.swc,$(wildcard com/ag/*.as))
# build all expected swf and swc files # build all expected swf and swc files
all: $(SWCS) $(SWFS) all: $(SWFS)
# remove all swf files in the tree # remove all swf files in the tree

Loading…
Cancel
Save