clippy/Makefile
2016-05-27 00:48:52 +02:00

11 lines
153 B
Makefile

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