Skip to content

Commit

Permalink
Fix: Make uses wildcard to glob files, not ls.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterN committed Mar 19, 2024
1 parent 8cd919f commit be81044
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ BASE_FILENAME := opensfx
SOUND_FILE := $(BASE_FILENAME).cat
OBS_FILE := $(BASE_FILENAME).obs

SOUND_FILES := $(ls src/wav/*.wav)
LANG_FILES := $(ls lang/*.lng)
SOUND_FILES := $(wildcard src/wav/*.wav)
LANG_FILES := $(wildcard lang/*.lng)

BUNDLE_FILES = $(BASE_FILENAME).obs $(DOC_FILES) $(SOUND_FILE)

Expand Down

0 comments on commit be81044

Please sign in to comment.