From fe1705589c593618ba6d070639eb55d210e3a83c Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Tue, 31 Jul 2018 20:11:22 +0100 Subject: val and flag, tested and works --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ab57711..8d3bdf1 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJ=libarg CC=g++ -CFLAGS=-Wall -fpermissive -fno-rtti -fno-exceptions -fno-unwind-tables -Wno-comment +CFLAGS=-g3 -Wall -fpermissive -fno-rtti -fno-exceptions -fno-unwind-tables -Wno-comment LDFLAGS= SOURCE=arg @@ -14,7 +14,7 @@ make: dynamic static dynamic: CFLAGS+=-fPIC dynamic: clean $(OBJECTS) - $(CC) $(CFLAGS) $(OBJECTS) -shared -o $(PROJ).so + gcc $(CFLAGS) $(OBJECTS) -shared -o $(PROJ).so static: clean $(OBJECTS) ar rcs $(PROJ).a $(OBJECTS) -- cgit v1.2.3