blob: 963a04bc55f1315c60746d376b645069cc78d37f (
plain)
1
2
3
4
5
6
7
8
9
|
.PHONY: all clean
all: xcb_shm_image_example
clean:
- rm xcb_shm_image_example xcb_shm_image_example.o
xcb_shm_image_example: LDFLAGS += -lxcb -lxcb-image -lxcb-shm
xcb_shm_image_example: xcb_shm_image_example.o
|