[Change] Merged some wildcard expressions.

This commit is contained in:
Allanis 2013-12-31 07:33:25 +00:00
parent 07ce433470
commit a1d275b9ba

View File

@ -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)