updates to fix bundler on win32
[feisty_meow.git] / nucleus / applications / bundler / makefile
1 include variables.def
2
3 # had to move to this style for these two
4 # since having a makefile call another was doing
5 # really unpredictable things, where the makefile
6 # passed to the -f of make was actually dragging
7 # in bits from the main makefile.  this was
8 # tested even by saying:
9 #   make -f makefile.stub clean
10 # which totally isolates it to the stub file, but
11 # the main makefile was still being pulled in.
12 # hopefully this approach of having a neutral outer
13 # maker will get rid of that broken behavior.
14
15 PROJECT = bundler_app
16 LAST_TARGETS = maker
17 OTHER_CLEANS = breaker
18
19 include rules.def
20
21 maker:
22         $(MAKE) -f makefile.bundle_creator
23         $(MAKE) -f makefile.unpacker_stub
24
25 breaker:
26         $(MAKE) -f makefile.bundle_creator clean
27         $(MAKE) -f makefile.unpacker_stub clean
28
29