Skip to content
Snippets Groups Projects
Commit 037a59ca authored by Lalit2.Dangi@live.uwe.ac.uk's avatar Lalit2.Dangi@live.uwe.ac.uk
Browse files

Makefile

parent befc2259
Branches
No related tags found
No related merge requests found
Makefile 0 → 100644
CC = gcc
CFLAGS = -Wall -std=c99
LDFLAGS = -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
all: main
main: main.c game.c
$(CC) $(CFLAGS) -o main main.c game.c $(LDFLAGS)
clean:
rm -f main
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment