summaryrefslogtreecommitdiff
path: root/Makefile
blob: cc16ea13c47a03fa93e1458f45c3e113ec70a3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile, part of XGrabControl.
# (c) 2011, en passant development.

SRCFILES=grab-replacement.c
SOFILE=libXGrabControl.so

all: $(SOFILE)

$(SOFILE): $(SRCFILES) Makefile
	gcc -Wall -Wextra -shared -Os -o $(SOFILE) $(SRCFILES)

clean:
	rm -f $(SOFILE)