diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2450243 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +spiel: main.o + gcc -o spiel main.o -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 + +main.o: main.c + gcc -c main.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 + +clean: + rm *.o diff --git a/a.out b/spiel similarity index 100% rename from a.out rename to spiel