From 6a6f39e0bd346a8df8c0889cf62ceaec0be467a4 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Thu, 11 May 2023 18:08:11 +1200 Subject: [PATCH] Remove gmake-exclusive ifeq statements in Makefile --- Makefile | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/Makefile b/Makefile index 0d9e3b9..8727760 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,3 @@ -# The GPLv2 License (GPLv2) -# Copyright (c) 2023 Jeremy Baxter -# -# esv is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# esv is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with esv. If not, see . - PROG = esv IMPORT = import PREFIX = /usr/local @@ -23,16 +7,6 @@ DC = ldc2 CFLAGS = -O -I${IMPORT} OBJS = main.o esv.o ini.o -ifeq (${DEBUG},) - CFLAGS += -release -endif - -ifneq (${WI},) - CFLAGS += -wi -else - CFLAGS += -w -endif - all: esv esv: ${OBJS}