[Change] Merged some wildcard expressions.
This commit is contained in:
parent
07ce433470
commit
a1d275b9ba
31
bin/Makefile
31
bin/Makefile
@ -67,22 +67,21 @@ LDFLAGS += -pg
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# DATA.
|
# DATA.
|
||||||
DATA_AI := $(wildcard ../scripts/ai/*.lua) \
|
DATA_AI := $(wildcard ../scripts/ai/*.lua \
|
||||||
$(wildcard ../scripts/ai/include/*.lua) \
|
../scripts/ai/include/*.lua \
|
||||||
$(wildcard ../scipts/ai/tpl/*.lua)
|
../scipts/ai/tpl/*.lua)
|
||||||
DATA_GFX := $(wildcard ../gfx/*.png) \
|
DATA_GFX := $(wildcard ../gfx/*.png \
|
||||||
$(wildcard ../gfx/gui/*.png) \
|
../gfx/gui/*.png \
|
||||||
$(wildcard ../gfx/logo/*.png) \
|
../gfx/logo/*.png \
|
||||||
$(wildcard ../gfx/outfit/space/*.png) \
|
../gfx/outfit/space/*.png \
|
||||||
$(wildcard ../gfx/outfit/store/*.png) \
|
../gfx/outfit/store/*.png \
|
||||||
$(wildcard ../gfx/planet/exterior/*.png) \
|
../gfx/planet/exterior/*.png \
|
||||||
$(wildcard ../gfx/planet/space/*.png) \
|
../gfx/planet/space/*.png \
|
||||||
$(wildcard ../gfx/ship/*.png) \
|
../gfx/ship/*.png \
|
||||||
$(wildcard ../gfx/spfx/*.png)
|
../gfx/spfx/*.png)
|
||||||
DATA_XML := $(wildcard ../dat/*.xml) $(wildcard ../dat/*.ttf)
|
DATA_XML := $(wildcard ../dat/*.xml ../dat/*.ttf)
|
||||||
DATA_SND := $(wildcard ../snd/music/*.ogg) \
|
DATA_SND := $(wildcard ../snd/music/*.ogg \
|
||||||
$(wildcard ../snd/sounds/*.wav) \
|
../snd/sounds/*.wav) ../snd/music.lua
|
||||||
../snd/music.lua
|
|
||||||
DATA_MISN := $(wildcard ../dat/missions/*.lua)
|
DATA_MISN := $(wildcard ../dat/missions/*.lua)
|
||||||
DATA := data
|
DATA := data
|
||||||
DATAFILES := $(DATA_AI) $(DATA_GFX) $(DATA_XML) $(DATA_SND) $(DATA_MISN)
|
DATAFILES := $(DATA_AI) $(DATA_GFX) $(DATA_XML) $(DATA_SND) $(DATA_MISN)
|
||||||
|
Loading…
Reference in New Issue
Block a user