Compare commits

..

No commits in common. "2b95854d230c3a4625b71fe1c1e3e1d9afda5981" and "f195a53897c127817605482f5929d6d49e6f4560" have entirely different histories.

3 changed files with 3 additions and 9 deletions

View File

@ -1,9 +1,9 @@
CC = gcc
CFLAGS = -g -Wall
CFLAGS = -g -Wall -I$(raylibfolder)
LDFLAGS = -lGL -lX11 -lm
BINARIES = ./linux
raylibfolder = ./raylib
raylib_folder = ./raylib
unityfolder = ./unity
# --------------------------
@ -28,7 +28,7 @@ game.o: game.c
$(CC) $(CFLAGS) -c game.c
graphicalGame.o: graphicalGame.c
$(CC) $(CFLAGS) -I$(raylibfolder) -c graphicalGame.c
$(CC) $(CFLAGS) -c graphicalGame.c
# --------------------------
# Unit Tests

Binary file not shown.

6
test.c
View File

@ -1,6 +0,0 @@
#include <stdio.h>
int main()
{
printf("Hoho\n");
return 0;
}