1
0
mirror of https://github.com/abakh/nbsdgames.git synced 2024-06-08 17:20:41 +00:00
nbsdgames/Makefile

86 lines
3.1 KiB
Makefile
Raw Normal View History

2019-03-20 14:16:33 +00:00
# -*- Makefile -*-
2021-04-23 20:55:17 +00:00
2021-04-20 14:09:41 +00:00
#-O3 --std=c99 -lcurses -DNO_MOUSE for NetBSD curses
#adding --std=c99 makes warnings in GNU, and the blame is upon glibc feature test macros. my code is correct.
2021-04-23 20:18:40 +00:00
GAMES_DIR?=/usr/games
2021-04-24 08:46:11 +00:00
SCORES_DIR?=/var/games
2021-05-03 22:03:52 +00:00
MAN_DIR?=/usr/share/man/man6
2021-05-03 23:13:54 +00:00
CFLAGS+= -Wno-unused-result -D SCORES_DIR=\"$(SCORES_DIR)\"
PKG-CONFIG?=pkg-config
2022-03-31 02:56:28 +00:00
LDFLAGS+= $(shell pkg-config --libs --cflags ncurses) -lm
2021-04-29 23:05:16 +00:00
2022-02-01 22:25:05 +00:00
ALL= nbsdgames jewels sudoku mines reversi checkers battleship rabbithole sos pipes fifteen memoblocks fisher muncher miketron redsquare darrt snakeduel tugow
2022-01-25 03:31:23 +00:00
SCORE_FILES= pipes_scores jewels_scores miketron_scores muncher_scores fisher_scores darrt_scores tugow_scores
2021-04-29 23:05:16 +00:00
2022-02-01 22:25:05 +00:00
all: $(ALL)
2021-04-29 23:05:16 +00:00
2020-06-20 16:26:54 +00:00
scorefiles:
2021-05-03 23:13:54 +00:00
for sf in $(SCORE_FILES); do touch $(SCORES_DIR)/$$sf ; chmod 664 $(SCORES_DIR)/$$sf; chown :games $(SCORES_DIR)/$$sf ; done;
2022-01-25 03:31:23 +00:00
for game in $(ALL); do chown :games $(GAMES_DIR)/$$game; chmod g $(GAMES_DIR)/$$game ; done;
2021-04-29 23:05:16 +00:00
2021-05-03 22:03:52 +00:00
manpages:
cp man/* $(MAN_DIR)
2021-04-24 08:46:11 +00:00
jewels: jewels.c config.h common.h
2021-04-24 08:59:40 +00:00
$(CC) jewels.c $(LDFLAGS) $(CFLAGS) -o ./jewels
2021-04-24 08:46:11 +00:00
sudoku: sudoku.c config.h
2021-04-29 23:05:16 +00:00
$(CC) sudoku.c $(LDFLAGS) $(CFLAGS) -o ./sudoku
2021-03-05 13:00:08 +00:00
mines: mines.c config.h
2021-04-24 08:59:40 +00:00
$(CC) mines.c $(LDFLAGS) $(CFLAGS) -o ./mines
2021-03-05 13:00:08 +00:00
reversi: reversi.c config.h
2021-04-24 08:59:40 +00:00
$(CC) reversi.c $(LDFLAGS) $(CFLAGS) -o ./reversi
2021-03-05 13:00:08 +00:00
checkers: checkers.c config.h
2021-04-24 08:59:40 +00:00
$(CC) checkers.c $(LDFLAGS) $(CFLAGS) -o ./checkers
2021-03-05 13:00:08 +00:00
battleship: battleship.c config.h
2021-04-24 08:59:40 +00:00
$(CC) battleship.c $(LDFLAGS) $(CFLAGS) -o ./battleship
2021-03-05 13:00:08 +00:00
rabbithole: rabbithole.c config.h
2021-04-24 08:59:40 +00:00
$(CC) rabbithole.c $(LDFLAGS) $(CFLAGS) -o ./rabbithole
2021-03-05 13:00:08 +00:00
sos: sos.c config.h
2021-04-24 08:59:40 +00:00
$(CC) sos.c $(LDFLAGS) $(CFLAGS) -o ./sos
2021-04-29 23:05:16 +00:00
pipes: pipes.c config.h common.h
2021-04-24 08:59:40 +00:00
$(CC) pipes.c $(LDFLAGS) $(CFLAGS) -o ./pipes
2021-03-05 13:00:08 +00:00
fifteen: fifteen.c config.h
2021-04-24 08:59:40 +00:00
$(CC) fifteen.c $(LDFLAGS) $(CFLAGS) -o ./fifteen
2019-05-13 13:58:19 +00:00
memoblocks: memoblocks.c
2021-04-24 08:59:40 +00:00
$(CC) memoblocks.c $(LDFLAGS) $(CFLAGS) -o ./memoblocks
2021-04-24 08:46:11 +00:00
fisher: fisher.c config.h common.h
2021-04-24 08:59:40 +00:00
$(CC) fisher.c $(LDFLAGS) $(CFLAGS) -o ./fisher
2021-04-24 08:46:11 +00:00
muncher: muncher.c config.h common.h
2021-04-24 08:59:40 +00:00
$(CC) muncher.c $(LDFLAGS) $(CFLAGS) -o ./muncher
2021-04-24 08:46:11 +00:00
miketron: miketron.c config.h common.h
2021-04-24 08:59:40 +00:00
$(CC) miketron.c $(LDFLAGS) $(CFLAGS) -o ./miketron
2021-03-05 13:00:08 +00:00
redsquare: redsquare.c config.h
2021-04-24 08:59:40 +00:00
$(CC) redsquare.c $(LDFLAGS) $(CFLAGS) -o ./redsquare
2021-04-24 08:46:11 +00:00
darrt: darrt.c config.h common.h
2021-04-29 23:05:16 +00:00
$(CC) darrt.c $(LDFLAGS) $(CFLAGS) -o ./darrt
2022-02-01 22:25:05 +00:00
nbsdgames: nbsdgames.c
$(CC) nbsdgames.c $(LDFLAGS) $(CFLAGS) -o ./nbsdgames
2021-04-16 21:16:54 +00:00
snakeduel: snakeduel.c config.h
2021-04-24 08:59:40 +00:00
$(CC) snakeduel.c $(LDFLAGS) $(CFLAGS) -o ./snakeduel
2022-01-25 03:31:23 +00:00
tugow: tugow.c common.h
$(CC) tugow.c $(LDFLAGS) $(CFLAGS) -o ./tugow
2022-02-01 22:25:05 +00:00
menu:
cp nbsdgames.desktop /usr/share/applications
cp nbsdgames.svg /usr/share/pixmaps
2019-03-20 14:16:33 +00:00
clean:
for game in $(ALL); do rm $$game; done;
2019-03-20 14:16:33 +00:00
uninstall:
2021-08-20 12:40:45 +00:00
for game in $(ALL); do rm $(GAMES_DIR)/$$game; rm $(MAN_DIR)/$$game.6.gz ;done;
2021-04-29 23:05:16 +00:00
install: $(ALL)
2022-02-01 22:25:05 +00:00
cp $(ALL) $(GAMES_DIR)
2021-08-20 12:40:45 +00:00
test:
for game in $(ALL); do ./$$game ;done;
#######for namespacing #######
2022-02-01 22:25:05 +00:00
nb:
CFLAGS="$$CFLAGS -D NB=\\\"nb\\\"" make
for game in $(ALL); do cp $$game nb$$game ;done;
for manpage in $(ls man); do cp man/$$manpage man/nb$$manpage ;done;
nbinstall: nb
cp nb* $(GAMES_DIR)
nbmanpages: nb
cp man/nb* $(MAN_DIR)
nbclean:
2022-02-01 22:25:05 +00:00
for game in $(ALL); do rm nb$$game; done;