aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 2 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 5bbef36..a2bf45c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,2 @@
-# $Id$
-
-PROG= demomonitor
-SRCS= demomonitor.c Graph.c GraphDisplay.c BarDisplay.c
-NOMAN=
-LIBS= xt
-PCCF!= pkg-config --cflags ${LIBS}
-CFLAGS+=${PCCF}
-PCLD!= pkg-config --libs ${LIBS}
-LDADD+= ${PCLD}
-DEBUG+= -Wall -ggdb
-
-.include <bsd.prog.mk>
+demo: demomonitor.c Graph.c GraphDisplay.c BarDisplay.c
+ $(CC) -o $@ `pkg-config --cflags --libs xt` $^