7f317de888f5e21697b64c276cd0054c7388204f
[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 LAST_TARGETS = maker
16 OTHER_CLEANS = breaker
17
18 include rules.def
19
20 maker:
21         $(MAKE) -f makefile.bundle_creator
22         $(MAKE) -f makefile.unpacker_stub
23
24 breaker:
25         $(MAKE) -f makefile.bundle_creator clean
26         $(MAKE) -f makefile.unpacker_stub clean
27
28