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

16 lines
275 B

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