Skip to content

Commit

Permalink
makefile: split for compatibility reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
shagu committed Sep 19, 2019
1 parent b2fa90d commit 82c460f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ full-tbc:
enUS koKR frFR deDE zhCN esES ruRU:
$(eval LOCALE := $(shell echo $@))
@echo "===== building ${LOCALE} ====="
mkdir -p release/$@/pfQuest/init release/$@/pfQuest/db/{enUS,${LOCALE}}
mkdir -p release/$@/pfQuest/init release/$@/pfQuest/db/enUS release/$@/pfQuest/db/${LOCALE}
cp -rf compat img release/$@/pfQuest/

cp -f $(shell ls db/*.lua | grep -v "\-tbc") release/$@/pfQuest/db
Expand All @@ -60,7 +60,7 @@ enUS koKR frFR deDE zhCN esES ruRU:
enUS-tbc koKR-tbc frFR-tbc deDE-tbc zhCN-tbc esES-tbc ruRU-tbc:
$(eval LOCALE := $(shell echo $@ | sed 's/-tbc//g'))
@echo "===== building ${LOCALE} ====="
mkdir -p release/$@/pfQuest-tbc/init release/$@/pfQuest-tbc/db/{enUS,${LOCALE}}
mkdir -p release/$@/pfQuest-tbc/init release/$@/pfQuest-tbc/db/enUS release/$@/pfQuest-tbc/db/${LOCALE}
cp -rf compat img release/$@/pfQuest-tbc/

cp -f $(shell ls db/*.lua) release/$@/pfQuest-tbc/db
Expand Down

0 comments on commit 82c460f

Please sign in to comment.