You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B
Makefile

CC=g++
INCLUDE= -I /home/sandyx/code/objc/wow/include
main: main.o timer.o
g++ main.o timer.o -o main -L /home/sandyx/code/objc/wow/lib/linux64 -lraylib -lobjc -lyeslib
main.o:
g++ $(INCLUDE) main.mm -c
timer.o:
g++ $(INCLUDE) timer.mm -c
clean:
rm main *.o