Print the correct program name in usage info.
[xicursorset.git] / Makefile
1 CFLAGS := -ansi -Wall -pedantic
2 CFLAGS += -ggdb
3
4 LDFLAGS := $(shell pkg-config --cflags --libs xi xcursor)
5
6 xicursorset: xicursorset.c
7         $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
8
9 clean:
10         rm -f xicursorset *.o