From d9057214f6b111b2b8511aad92596d2f7cfe394d Mon Sep 17 00:00:00 2001 From: Stefan Franke Date: Sun, 7 Jan 2018 20:37:33 +0100 Subject: [PATCH] cleanup --- Makefile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index d77e0cd..9ec7315 100644 --- a/Makefile +++ b/Makefile @@ -12,13 +12,12 @@ CFLAGS=-Os CPPFLAGS=-Os CXXFLAGS=-Os - +E=CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" CXXFLAGS="$(CXXFLAGS)" PREFIX=/opt/amiga PATH := $(PREFIX)/bin:$(PATH) SHELL = /bin/bash - # ================================================= # determine exe extension for cygwin $(eval MYMAKE = $(shell which make) ) @@ -31,17 +30,15 @@ EXEEXT=$(MYMAKEEXE:%=.exe) # ================================================= .PHONY: help help: - @echo "make help display this help" - @echo "make all build and install all" + @echo "make help display this help" + @echo "make all build and install all" @echo "make builds a target: binutils, gcc, fd2sfd, fd2pragma, ira, sfdc, vbcc, vlink" - @echo "make clean remove the build folder" + @echo "make clean remove the build folder" @echo "make clean- remove the target's build folder" @echo "make clean-prefix remove all content from the prefix folder" - @echo "make update perform git pull for all targets" + @echo "make update perform git pull for all targets" @echo "make update- perform git pull for the given target" -E=CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" CXXFLAGS="$(CXXFLAGS)" - # ================================================= # all # =================================================