You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CFLAGS = -Wall -Wextra -pedantic -std=c11 -g -Iraylib/include
|
|
CC = gcc
|
|
LDFLAGS = -Lraylib/lib -lm
|
|
|
|
all: ugui
|
|
|
|
ugui: ugui.o vectree.o cache.o timer.o raylib/lib/libraylib.a
|
|
|
|
ugui.o: ugui.c ugui.h
|
|
|
|
vectree.o: vectree.c ugui.h
|
|
|
|
cache.o: cache.c ugui.h
|
|
|
|
timer.o: timer.c timer.h
|
|
|