1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2025-07-11 13:39:22 +00:00

Functionnal project

This commit is contained in:
2016-12-10 23:21:17 +01:00
parent 33a439646d
commit c2fbc32f16
4 changed files with 7 additions and 5 deletions

View File

@ -2,7 +2,7 @@ CC=gcc
CFLAGS=-Wall -Werror -pedantic -fpic -g
LIBSDIR=-L/usr/lib -L../Libs
LIBSDIR=-L/usr/lib -L./Libs
INCLUDEDIR=-I/usr/include -I.
#Library variables
@ -14,7 +14,6 @@ LIBSOURCEOFILE=$(LIBSOURCE:=.o)
#Generating the library binary
$(LIBTARGET): $(LIBSOURCEOFILE)
@echo "\n Generating the library binary"
mkdir -p ../Libs
$(CC) $(CFLAGS) -shared $(LIBSOURCEOFILE) -o ../Libs/$(LIBTARGET)
#Generating object files