about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2010-02-10 13:26:56 +0000
committerMarco Peereboom <marco@conformal.com>2010-02-10 13:26:56 +0000
commit4b659863cd0411b0f4255998de6999060a0bf49f (patch)
treef0ca5ff521e86be88d3dd9bdd3a482fa4bc85073 /Makefile
downloadxombrero-4b659863cd0411b0f4255998de6999060a0bf49f.tar.gz
Working skeleton
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..35fe137
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+# $xxxterm
+
+PROG=xxxterm
+#MAN=xxxterm.8
+NOMAN=
+
+SRCS= xxxterm.c
+COPT+= -O2
+DEBUG+= -ggdb3 
+LIBS= gtk+-2.0
+LIBS+= webkit-1.0
+LIBS+= libsoup-2.4
+GTK!=pkg-config --cflags --libs $(LIBS)
+CFLAGS+=$(GTK) -Wall -pthread
+LDFLAGS+=$(GTK) -pthread
+
+.include <bsd.prog.mk>