Skip to content
Snippets Groups Projects
Forked from GOSSA JULIEN / P4z
2 commits ahead of the upstream repository.
Makefile 201 B
all: main
	
main : tris.o utils.o main.c
	gcc -o main -Wall utils.o tris.o -g main.c

tris.o : tris.c tris.h
	gcc -c -Wall -g tris.c

utils.o : utils.c utils.h
	gcc -c -Wall -g utils.c
clean :
	rm *.o