From 1892771ec2370b4455aca2d17a2d4633a9e8d0dd Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Thu, 11 Oct 2012 09:02:15 -0600 Subject: [PATCH] Imported Upstream version 0.2.1 --- Makefile | 7 +++---- ver.h | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 5e0fddb..ea23ce4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -OPTIMIZE = -O2 CC = gcc MATHLIB = -lm @@ -13,16 +12,16 @@ INCLUDES = block.h blocke.h config.h core.h coree.h defaults.h double.h \ string.h tools.h toolse.h udio.h ver.h ycore.h yforth.h yforth: div.h $(OBJECTS) - $(CC) -o yforth $(OBJECTS) $(MATHLIB) + $(CC) -o yforth $(LDFLAGS) $(OBJECTS) $(MATHLIB) div.h: div ./div div: division.c - $(CC) -o div division.c + $(CC) -o div $(CFLAGS) $(CPPFLAGS) division.c .c.o: - $(CC) -c -o $@ $(OPTIMIZE) $< + $(CC) -c -o $@ $(CFLAGS) $(CPPFLAGS) $< clean: rm -f *.o yforth div.h div diff --git a/ver.h b/ver.h index 3782906..cfddc40 100644 --- a/ver.h +++ b/ver.h @@ -20,5 +20,5 @@ #define VER_HI 0 #define VER_LO 2 -#define VER_TEST "+beta" +#define VER_TEST "" -- 2.30.2