summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2018-07-31 20:11:22 +0100
committerFreeArtMan <dos21h@gmail.com>2018-07-31 20:11:22 +0100
commitfe1705589c593618ba6d070639eb55d210e3a83c (patch)
treeec4b3723e9901d416624b1878ebc3671850aeb10 /Makefile
parentf88b7dea6effccf48b78be84e4a92bf197cf3c64 (diff)
downloadlibarg++-fe1705589c593618ba6d070639eb55d210e3a83c.tar.gz
libarg++-fe1705589c593618ba6d070639eb55d210e3a83c.zip
val and flag, tested and works
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)