summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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)