mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 19:04:49 +00:00
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
14 lines
507 B
Plaintext
14 lines
507 B
Plaintext
# Makefrag - makefile fragment for quiz/datfiles
|
|
|
|
quiz_datfiles_DIRS := $(QUIZ_DIR)
|
|
|
|
quiz_datfiles_CATS := africa america areas arith asia babies bard chinese \
|
|
collectives ed elements europe flowers greek inca index latin \
|
|
locomotive midearth morse mult murders poetry posneg pres province \
|
|
seq-easy seq-hard sexes sov spell state trek ucc
|
|
|
|
quiz_datfiles_all:
|
|
|
|
quiz_datfiles_install:
|
|
set -e; for c in $(quiz_datfiles_CATS); do $(INSTALL_DATA) quiz/datfiles/$$c $(INSTALL_PREFIX)$(QUIZ_DIR)/$$c; done
|