summaryrefslogtreecommitdiff
path: root/examples/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/makefile')
-rw-r--r--examples/makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/makefile b/examples/makefile
new file mode 100644
index 0000000..b65abd1
--- /dev/null
+++ b/examples/makefile
@@ -0,0 +1,11 @@
+#future version should use autoconf
+CC=gcc
+CFLAGS=-Wall -g -I/usr/include/X11
+LDFLAGS=-L.
+LOADLIBES= -lX11 -lXt -lXaw
+FILES=viewport toggle strip scrollbar repeater pane menu list
+
+all: $(FILES)
+
+clean:
+ $(RM) *.o $(FILES)