cong/Makefile

8 lines
115 B
Makefile
Raw Normal View History

2024-01-25 08:41:39 +01:00
SOURCES := cong.c
TARGET := cong
CFLAGS := -O2 -lraylib
.PHONY: all
all:
$(CC) -o $(TARGET) $(SOURCES) $(CFLAGS)