14 lines
341 B
Makefile
14 lines
341 B
Makefile
# $NetBSD: Makefile,v 1.2 2009/07/07 17:14:39 joerg Exp $
|
|
# $FreeBSD: ports/x11/xnodecor/files/Makefile,v 1.1 2003/09/08 07:08:14 edwin Exp $
|
|
|
|
all: xnodecor
|
|
|
|
xnodecor:
|
|
$(CC) -o xnodecor xnodecor.c $(CFLAGS) $(LDFLAGS) $(LIBS) -lX11
|
|
|
|
install:
|
|
${BSD_INSTALL_PROGRAM} xnodecor ${DESTDIR}${PREFIX}/bin
|
|
|
|
clean:
|
|
rm -f *.rej a.out core xnodecor
|