From fa9e8cea258b7fa6951944fe821645402baf7619 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Wed, 17 Jul 2019 17:09:23 -0700 Subject: [PATCH] Update leading comments for Makefiles: for Frotz and GNU make required. --- Makefile | 3 +++ src/blorb/Makefile | 3 ++- src/common/Makefile | 3 ++- src/curses/Makefile | 3 ++- src/dumb/Makefile | 3 ++- src/sdl/Makefile | 3 ++- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a368d1f..95d39b3 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +# Makefile for Unix Frotz +# GNU make is required. + # Your C compiler CC=gcc #CC=clang diff --git a/src/blorb/Makefile b/src/blorb/Makefile index 2fb235f..b3dda0f 100644 --- a/src/blorb/Makefile +++ b/src/blorb/Makefile @@ -1,4 +1,5 @@ -# For GNU Make. +# Makefile for Unix Frotz +# GNU make is required SOURCES = blorblib.c diff --git a/src/common/Makefile b/src/common/Makefile index a76008c..47cbf69 100644 --- a/src/common/Makefile +++ b/src/common/Makefile @@ -1,4 +1,5 @@ -# For GNU Make. +# Makefile for Unix Frotz +# GNU make is required. SOURCES = buffer.c err.c fastmem.c files.c getopt.c hotkey.c input.c \ main.c math.c missing.c object.c process.c quetzal.c random.c \ diff --git a/src/curses/Makefile b/src/curses/Makefile index bbfe7ab..eb1d77f 100644 --- a/src/curses/Makefile +++ b/src/curses/Makefile @@ -1,4 +1,5 @@ -# For GNU Make. +# Makefile for Unix Frotz +# GNU make is required. SOURCES = ux_audio.c ux_audio_none.c ux_audio_oss.c ux_blorb.c ux_init.c \ ux_input.c ux_pic.c ux_resource.c ux_screen.c ux_text.c diff --git a/src/dumb/Makefile b/src/dumb/Makefile index d6165d5..e3d9e7c 100644 --- a/src/dumb/Makefile +++ b/src/dumb/Makefile @@ -1,4 +1,5 @@ -# For GNU Make. +# Makefile for Unix Frotz +# GNU make is required SOURCES = dumb_blorb.c dumb_init.c dumb_input.c dumb_output.c dumb_pic.c diff --git a/src/sdl/Makefile b/src/sdl/Makefile index 39fa34e..b6f43e1 100644 --- a/src/sdl/Makefile +++ b/src/sdl/Makefile @@ -1,4 +1,5 @@ -# For GNU Make. +# Makefile for Unix Frotz +# GNU make is required SDL_PKGS ?= libpng libjpeg sdl2 SDL2_mixer freetype2 zlib -- 2.34.1