aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: f5d3b311e797d85ce92330144cfecb7c7b1feb10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: all64 all32

all64:
	gcc -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -lX11 -lXext -lXrender xwinwrap.c -o xwinwrap
	-mkdir x86_64
	mv ./xwinwrap ./x86_64

all32:
	gcc -m32 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -lX11 -lXext -lXrender xwinwrap.c -o xwinwrap
	-mkdir i386
	mv ./xwinwrap ./i386

install64:
	cp x86_64/xwinwrap /usr/bin

install32:
	cp i386/xwinwrap /usr/bin

clean:
	-rm -rf x86_64/ i386/