summary refs log tree commit diff homepage
path: root/Makefile
blob: 6296390d2df1d2f09ab0da2aed4f4e8554d1028b (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
CHROOT_USER = play
CHROOT_GROUP = ${CHROOT_USER}

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

-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
	install -d -o ${CHROOT_USER} -g ${CHROOT_GROUP} root/home/${CHROOT_USER}
	cp -af /usr/share/locale/UTF-8 root/usr/share/locale
	cp -af /usr/share/terminfo root/usr/share
	cp -fp /bin/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 -px -f chroot.tar -C /home/${CHROOT_USER}
' class='logmsg'> Some compat sources (getentropy_linux.c for example) require OpenSSL. Reported by Robert Scheck. 2020-12-15Import LibreSSL 3.3.1June McEnroe 2020-11-24Import LibreSSL 3.3.0June McEnroe 2020-10-22Import LibreSSL 3.2.2June McEnroe 2020-09-29Import LibreSSL 3.2.1June McEnroe 2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe 2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe 2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroean title='2019-11-09 20:23:05 -0500'>2019-11-09Remove extended-join and invite-notifyJune McEnroe 2019-11-09Maintain stateCaps and offer them to clientsJune McEnroe 2019-11-09Parse capabilitiesJune McEnroe 2019-11-09Avoid the reserved _A names with BIT macroJune McEnroe 2019-11-09Define macro for bit flag enumsJune McEnroe 2019-11-08Check that password is hashedJune McEnroe 2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe 2019-11-08Only change AWAY status for registered clientsJune McEnroe 2019-11-07Just write the example normallyJune McEnroe 2019-11-07Include path in readlinkat errorJune McEnroe 2019-11-07Call clientConsume before clientRecvJune McEnroe 2019-11-06Use -l:filename in Linux.mkJune McEnroe 2019-11-06Fix compat.h for #defined strlcpyJune McEnroe 2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe 2019-11-06Document calico service configurationJune McEnroe 2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe 2019-11-06Document pounce service configurationJune McEnroe 2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe 2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe 2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe 2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe