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

This commit is contained in:
Dan Buch 2010-02-19 22:08:26 -05:00
parent f8642e650f
commit efd3fe2dbf
3 changed files with 4 additions and 8 deletions

View File

@ -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
{ {

View File

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

View File

@ -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