From 2dff04dbeff26096706826864985fa2e2721ef5e Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 25 Dec 2018 16:10:43 -0500 Subject: Add chroot target --- Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 162783a..ffe5858 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ +CHROOT_USER = play +CHROOT_GROUP = $(CHROOT_USER) + CFLAGS += -std=c11 -Wall -Wextra +LDFLAGS = -static LDLIBS = -lcurses +-include config.mk + OBJS += play.o OBJS += 2048.o @@ -11,3 +17,21 @@ play: $(OBJS) tags: *.c ctags -w *.c + +chroot.tar: play + install -d -o root -g wheel \ + root \ + root/bin \ + root/home \ + root/usr/share/misc + install -d -o $(CHROOT_USER) -g $(CHROOT_GROUP) root/home/$(CHROOT_USER) + 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) -- cgit 1.4.1 adler32.3?follow=1'>log tree commit diff
path: root/doc/zlib/adler32.3 (unfollow)
Commit message (Expand)Author
2022-08-14Remove tweets text fileJune McEnroe
2022-08-04Add Conversations With FriendsJune McEnroe
2022-07-30Add Normal PeopleJune McEnroe
2022-07-26Rewrite glitch from new pngoJune McEnroe
2022-07-26Update Care with time-to-ID and piercingsJune McEnroe
2022-07-26Add -w to upJune McEnroe
2022-07-13Set push.autoSetupRemoteJune McEnroe
2022-07-08Remove TOURJune McEnroe
2022-07-03Add The Bone Shard EmperorJune McEnroe
2022-06-25Bump xterm font size to 12June McEnroe
2022-06-10Handle subshells (and functions) inside substitutionsJune McEnroe
2022-06-10Switch to jorts Install scriptJune McEnroe
2022-06-08Indicate if still reading or no resultsJune McEnroe
2022-06-08Add Maiden, Mother, CroneJune McEnroe
2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe
2022-06-03Set line number on File linesJune McEnroe
2022-06-03Stop polling stdin after EOFJune McEnroe
2022-06-02Set TABSIZE=4June McEnroe
2022-06-02Do basic match highlightingJune McEnroe
2022-06-02Clean up parsing a littleJune McEnroe
2022-06-02Don't duplicate path stringJune McEnroe
2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe
2022-06-02Add initial working version of qfJune McEnroe
2022-05-29Set prompt for okshJune McEnroe