No assert
[mirrors/Programs.git] / bash / x-mouse / xwarppointer / Makefile
CommitLineData
21c4e167
H
1X11HOME=/usr/X11
2
3CC = gcc
4CFLAGS= -Wall -I${X11HOME}/include
5LIBS=-L${X11HOME}/lib -lX11
6
7# uncomment for Solaris
8#LIBS+=-lsocket -lnsl
9
10xwarppointer: main.o
11 $(CC) $(CFLAGS) -o xwarppointer main.o $(LIBS)
12
13clean:
14 rm -f main.o xwarppointer
This page took 0.179538 seconds and 4 git commands to generate.