1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-10-03 21:01:14 +00:00

Add glf patching utility

This commit is contained in:
fgenesis 2012-07-13 20:40:39 +02:00
commit b844dee736
2 changed files with 80 additions and 0 deletions

10
tools/Makefile Normal file
View file

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