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
274 B
Makefile

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