mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 22:19:07 +00:00
10 lines
117 B
Makefile
10 lines
117 B
Makefile
CC=gcc
|
|
|
|
CFLAGS=-Wall -pedantic -pipe -O2
|
|
|
|
.PHONY: all
|
|
|
|
all: glfpatch
|
|
|
|
glfpatch: glfpatch.c
|
|
${CC} ${CFLAGS} -o $@ $<
|