Files
brightstone/Player/Makefile
T
2026-08-12 13:28:32 +03:00

11 lines
146 B
Makefile

CC=clang
CFLAGS=-lX11
DEPS =
OBJ = main.o Display/x11.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
player: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)