diff --git a/forth.c b/forth.c index e69de29..1c6befb 100644 --- a/forth.c +++ b/forth.c @@ -0,0 +1,2 @@ +// Ligne et commentaire a supprimer (utile juste pour que le projet initial compile) +int main() {} diff --git a/makefile b/makefile index c17b752..a692923 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ default : all : forth clean : - @rm -f *.o *~ forth_interpretor 2> /dev/null + @rm -f *.o */*.o *~ forth_interpretor 2> /dev/null liste : LISTE/liste.o pile : PILE/pile.o @@ -12,11 +12,11 @@ lexer : LEXER/lexer.o forth : forth.o PILE/pile.o LISTE/liste.o LEXER/lexer.o - gcc -Wall LEXER/lexer.o LISTE/liste.o PILE/pile.o forth.o -o $@ + gcc -Wall LEXER/lexer.o LISTE/liste.o PILE/pile.o forth.o -o forth_interpretor %.o : %.c - gcc -c $< + gcc -c $< -o $@ -pile.o : PILE/pile.h -liste.o : LISTE/liste.h -lexer.o : LEXER/lexer.h +PILE/pile.o : PILE/pile.h +LISTE/liste.o : LISTE/liste.h +LEXER/lexer.o : LEXER/lexer.h