From 08eca96e71d96ad1f8e9b888875ab5570f208d19 Mon Sep 17 00:00:00 2001 From: Cameron Katri Date: Wed, 17 Feb 2021 14:05:02 -0500 Subject: Get all the games compiling for iOS --- ching/printching/Makefile | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'ching/printching/Makefile') diff --git a/ching/printching/Makefile b/ching/printching/Makefile index 8ccb39bb..4adbc181 100644 --- a/ching/printching/Makefile +++ b/ching/printching/Makefile @@ -1,7 +1,18 @@ # $NetBSD: Makefile,v 1.1 2005/06/30 13:30:33 perry Exp $ PROG= printching -NOMAN= # defined -BINDIR= /usr/libexec/ching +SRCS= printching.c -.include +all: $(PROG) + +$(PROG): $(SRCS) + $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I../include + $(STRIP) $(PROG) + +install: $(PROG) + $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/libexec/ching/$(PROG) + +clean: + rm -f $(CLEANFILES) $(PROG) + +.PHONY: all clean install -- cgit v1.2.3-56-ge451