all: clean
	dmd -c lib.d -fPIC -H -release -O -inline
	dmd app.d -release -O -inline

clean:
	rm -f lib.di
	rm -f lib.o
	rm -f lib.so
	rm -f app
