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.
14 lines
299 B
14 lines
299 B
CFLAGS = -Wall -Wextra -pedantic -std=c11 -g -Iraylib/src
|
|
CC = gcc
|
|
LDFLAGS = -Lraylib/src -lm
|
|
|
|
all: ugui
|
|
|
|
raylib/src/libraylib.a: raylib/src/Makefile
|
|
cd raylib/src; $(MAKE) PLATFORM=PLATFORM_DESKTOP
|
|
|
|
ugui: ugui.o vectree.o raylib/src/libraylib.a
|
|
|
|
ugui.o: ugui.c ugui.h
|
|
|
|
vectree.o: vectree.c ugui.h
|
|
|