aboutsummaryrefslogtreecommitdiff
path: root/src/safe_x11/Makefile
blob: 4ea8a63aad1e101f014df8a9737bd71bd009f8b6 (plain)
1
2
3
4
5
6
7
all:
	$(CC) -c -fPIC safex11.c -o safex11.o -lX11
	$(CC) -shared -o libsafex11.so safex11.o -lX11

clean:
	rm safex11.o
	rm *.so*