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 --- ppt/Makefile | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'ppt') diff --git a/ppt/Makefile b/ppt/Makefile index 800c6a2f..0b58797d 100644 --- a/ppt/Makefile +++ b/ppt/Makefile @@ -1,10 +1,19 @@ # $NetBSD: Makefile,v 1.6 2002/09/18 06:16:41 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 -NOMAN= # defined - PROG= ppt -HIDEGAME= hidegame +SRCS= ppt.c + +all: $(PROG) + +$(PROG): $(SRCS) + $(CC) $(CFLAGS) -o $(PROG) $(SRCS) + $(STRIP) $(PROG) + +install: $(PROG) + $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/games/$(PROG) -.include +clean: + rm -f $(CLEANFILES) $(PROG) +.PHONY: all clean install -- cgit v1.2.3