diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-07-31 20:11:22 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-07-31 20:11:22 +0100 |
commit | fe1705589c593618ba6d070639eb55d210e3a83c (patch) | |
tree | ec4b3723e9901d416624b1878ebc3671850aeb10 /Makefile | |
parent | f88b7dea6effccf48b78be84e4a92bf197cf3c64 (diff) | |
download | libarg++-fe1705589c593618ba6d070639eb55d210e3a83c.tar.gz libarg++-fe1705589c593618ba6d070639eb55d210e3a83c.zip |
val and flag, tested and works
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |