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/castching/Makefile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'ching/castching/Makefile') diff --git a/ching/castching/Makefile b/ching/castching/Makefile index dd84fc9e..905a9e32 100644 --- a/ching/castching/Makefile +++ b/ching/castching/Makefile @@ -1,7 +1,19 @@ # $NetBSD: Makefile,v 1.1 2005/06/30 13:30:33 perry Exp $ PROG= castching -NOMAN= # defined +SRCS= castching.c BINDIR= /usr/libexec/ching -.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