projects
/
xicursorset.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial import
[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