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.
ugui/Makefile

14 lines
241 B

11 months ago
CFLAGS = -Wall -Wextra -pedantic -std=c11 -g -Iraylib/include
11 months ago
CC = gcc
11 months ago
LDFLAGS = -Lraylib/lib -lm
11 months ago
all: ugui
11 months ago
ugui: ugui.o vectree.o cache.o raylib/lib/libraylib.a
11 months ago
ugui.o: ugui.c ugui.h
vectree.o: vectree.c ugui.h
cache.o: cache.c ugui.h