blob: be49a441103ffc0a009ff1f9641b9a03eaededd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $FreeBSD$
CFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
LIBS= -lX11
all: xnodecor
xnodecor:
$(CC) -o xnodecor xnodecor.c $(CFLAGS) $(LDFLAGS) $(LIBS)
install:
${BSD_INSTALL_PROGRAM} xnodecor ${LOCALBASE}/bin
clean:
rm -f *.rej a.out core xnodecor
|