summary refs log tree commit diff homepage
path: root/Makefile
blob: 372ee3d13814b6ca16b5ce6512fd0eb979d77999 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
CHROOT_USER = play
CHROOT_GROUP = ${CHROOT_USER}

CFLAGS += -std=c11 -Wall -Wextra
LDFLAGS = -static
LDLIBS = -lcursesw

-include config.mk

OBJS += 2048.o
OBJS += freecell.o
OBJS += play.o
OBJS += snake.o

all: tags play

play: ${OBJS}
	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@

tags: *.c
	ctags -w *.c

chroot.tar: play
	install -d -o root -g wheel \
		root \
		root/bin \
		root/home \
		root/usr/share/locale \
		root/usr/share/misc
	install -d -o ${CHROOT_USER} -g ${CHROOT_GROUP} root/home/${CHROOT_USER}
	cp -LRfp /usr/share/locale/en_US.UTF-8 root/usr/share/locale
	cp -fp /usr/share/misc/termcap.db root/usr/share/misc
	cp -fp /rescue/sh root/bin
	install play root/bin
	tar -c -f chroot.tar -C root bin home usr

clean:
	rm -fr play ${OBJS} tags chroot.tar root

install: chroot.tar
	tar -x -f chroot.tar -C /home/${CHROOT_USER}
2013-05-22ui-log: add <span/> around commit decorationsJohn Keeping 2013-05-22Makefile: fix parallel "make test"John Keeping 2013-05-18cache.c: fix cache_lsJohn Keeping 2013-05-13t0109: "function" is a bash-ismJohn Keeping 2013-05-13New mailing list.Jason A. Donenfeld 2013-04-30ui-snapshot: do not access $HOMEJason A. Donenfeld 2013-04-27t0001: validate Git -rcN version numbers correctlyJohn Keeping 2013-04-27git: update to 1.8.2.2John Keeping 2013-04-17scan-tree: fix regression in section-from-path=-1John Keeping 2013-04-15t0001: ignore ".dirty" suffix on Git versionJohn Keeping 2013-04-15tests: set TEST_OUTPUT_DIRECTORY to the CGit test directoryJohn Keeping 2013-04-15t0109: test more URLsJohn Keeping 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld 2013-04-10t0109: chain operations with &&John Keeping 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer