11 lines
153 B
Makefile
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
|