Skip to content

Commit

Permalink
v20.10
Browse files Browse the repository at this point in the history
  • Loading branch information
pinobatch committed Oct 18, 2020
1 parent 2e93544 commit f22f448
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
binzipfilename := "little-things-nes.zip"
srczipfilename := "little-things-nes-src.zip"
version := 20.10
binzipfilename := little-things-nes-$(version).zip
srczipfilename := little-things-nes-src-$(version).zip
binaries := \
768/768.nes \
a53bigchrram/a53bigchrram.nes \
Expand Down Expand Up @@ -64,10 +65,11 @@ binaries := \
x816-things/s0.nes \
x816-things/sndtest.nes

# All recursive makefiles must support the `all` phony target
alls := $(sort $(foreach o,$(binaries),$(dir $(o))all))
# See MISSING.md for other things that could be added

# See MISSING.md for other things that should be added
# All elements of binaries must be produced by a makefile in the
# same directory that supports the `all` phony target.
alls := $(sort $(foreach o,$(binaries),$(dir $(o))all))

.PHONY: all clean dist $(alls)

Expand All @@ -80,6 +82,7 @@ clean:
for d in $(foreach o,$(alls),$(dir $(o))); do \
$(MAKE) -C $$d clean; \
done
-rm bin-files.in src-files.in

dist: $(binzipfilename) $(srczipfilename)

Expand Down

0 comments on commit f22f448

Please sign in to comment.