This commit is contained in:
jaseg 2016-05-27 00:48:52 +02:00
parent b4bc8afe0a
commit 16f41a5298
3 changed files with 146 additions and 16 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
all: pixelflut.so
pixelflut.so: pixelflut.c
gcc -o $@ -shared -fPIC -Wall -Wpedantic -Wstrict-aliasing $<
.PHONY: clean
clean:
rm -f pixelflut.so