1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-14 21:39:09 +00:00
Aquaria/tools/Makefile
2012-07-13 20:40:39 +02:00

10 lines
117 B
Makefile

CC=gcc
CFLAGS=-Wall -pedantic -pipe -O2
.PHONY: all
all: glfpatch
glfpatch: glfpatch.c
${CC} ${CFLAGS} -o $@ $<