1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2025-07-11 04:19:29 +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

@ -7,7 +7,8 @@ CFLAGS=-Wall -Werror -pedantic -fpic -g
LIBSDIR=-L/usr/lib -L./Libs
INCLUDEDIR=-I/usr/include -I. -I./LibCell -I./LibList
# INCLUDEDIR=-I/usr/include -I. -I./LibCell -I./LibList
INCLUDEDIR=-I/usr/include -I. -I./LibList
#Exe test variables
TARGET=main.exe
@ -29,7 +30,8 @@ all: $(TARGET)
$(TARGET): $(SOURCEOFILE) $(DEPENDENCELIST) lib
@echo "\n Generating the " $(TARGET) " binary"
# $(CC) $(SOURCEOFILE) $(LIBSDIR) -l$(DEPENDENCENAME) -l$(DEPENDENCENAMELIST) -o $(TARGET)
$(CC) $(SOURCEOFILE) $(LIBSDIR) -l$(DEPENDENCENAMELIST) -o $(TARGET)
mkdir -p build
$(CC) $(SOURCEOFILE) $(LIBSDIR) -l$(DEPENDENCENAMELIST) -o ./build/$(TARGET)
#Generating the library binary
lib: