From 64ab0178ce202d6c94d826f5cff16aaaad98bcdf Mon Sep 17 00:00:00 2001 From: klmp200 Date: Sat, 10 Dec 2016 21:02:18 +0100 Subject: [PATCH] Temporary makefile --- .gitignore | 1 + Makefile | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index e26e4e3..072dd65 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ Libs/ *.o +*.exe diff --git a/Makefile b/Makefile index d7e22c6..ace23eb 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,8 @@ SOURCECFILE=$(SOURCE:=.c) SOURCEOFILE=$(SOURCE:=.o) #Library variables -DEPENDENCE=libCellElement.so -DEPENDENCENAME=CellElement +# DEPENDENCE=libCellElement.so +# DEPENDENCENAME=CellElement DEPENDENCELIST=libList.so DEPENDENCENAMELIST=List @@ -29,13 +29,14 @@ all: $(TARGET) #Generating the main.exe $(TARGET): $(SOURCEOFILE) $(DEPENDENCELIST) lib @echo "\n Generating the " $(TARGET) " binary" - $(CC) $(SOURCEOFILE) $(LIBSDIR) -l$(DEPENDENCENAME) -l$(DEPENDENCENAMELIST) -o $(TARGET) + # $(CC) $(SOURCEOFILE) $(LIBSDIR) -l$(DEPENDENCENAME) -l$(DEPENDENCENAMELIST) -o $(TARGET) + $(CC) $(SOURCEOFILE) $(LIBSDIR) -l$(DEPENDENCENAMELIST) -o $(TARGET) #Generating the library binary lib: @echo "\n Generating the automaton library binary" mkdir -p Libs - $(MAKE) -C LibCell + # $(MAKE) -C LibCell $(DEPENDENCELIST): @echo "\n Generating the list library binary"