Skip to content

Commit fd5dc11

Browse files
committed
Specify file extensions that make does not generate
1 parent 126c3f3 commit fd5dc11

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

Makefile

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,6 @@ $(foreach obj, $(pokeblue_vc_obj), $(eval $(call DEP,$(obj),$(obj:_blue_vc.o=.as
128128
endif
129129

130130

131-
%.asm: ;
132-
133-
134131
pokered_pad = 0x00
135132
pokeblue_pad = 0x00
136133
pokered_vc_pad = 0x00
@@ -175,8 +172,6 @@ gfx/trade/game_boy.2bpp: tools/gfx += --remove-duplicates
175172

176173
### Catch-all graphics rules
177174

178-
%.png: ;
179-
180175
%.2bpp: %.png
181176
$(RGBGFX) --colors dmg=e4 $(rgbgfx) -o $@ $<
182177
$(if $(tools/gfx),\
@@ -189,3 +184,15 @@ gfx/trade/game_boy.2bpp: tools/gfx += --remove-duplicates
189184

190185
%.pic: %.2bpp
191186
tools/pkmncompress $< $@
187+
188+
189+
### File extensions that are never generated and should be manually created
190+
191+
%.asm: ;
192+
%.inc: ;
193+
%.png: ;
194+
%.pal: ;
195+
%.bin: ;
196+
%.blk: ;
197+
%.bst: ;
198+
%.rle: ;

0 commit comments

Comments
 (0)