blob: 8d44f9098cf3be85f5ffa87a2ba547ea935685ec (
plain)
1
2
3
4
5
6
7
8
|
# Makefile template, copy and remove comments
SRC := ../util.c # mine.c
OUT := # ../bin/mine
LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
make all:
gcc $(SRC) -o $(OUT) $(LIBS)
|