summaryrefslogtreecommitdiff
path: root/examples/makefile
diff options
context:
space:
mode:
authorWalter Harms <wharms@bfs.de>2023-05-12 23:03:32 +0200
committerWalter Harms <wharms@bfs.de>2023-05-12 23:03:32 +0200
commit2f99a415913b6be4ed2955a3e30694c2216aafbd (patch)
treef7edfa31d631eaa30bd5258d40c1b3902c13239f /examples/makefile
parent324358180ddeaae482c5f66bb5647a4918710296 (diff)
downloadxorg-lib-libXaw-2f99a415913b6be4ed2955a3e30694c2216aafbd.tar.gz
add examples
provide some examples to support the documentation
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)