aboutsummaryrefslogtreecommitdiff
path: root/src/libplumb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/libplumb/Makefile')
-rwxr-xr-xsrc/libplumb/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libplumb/Makefile b/src/libplumb/Makefile
new file mode 100755
index 00000000..e9d07a66
--- /dev/null
+++ b/src/libplumb/Makefile
@@ -0,0 +1,19 @@
+
+LIB=../../lib/libplumb.a
+OFILES=\
+ mesg.o\
+
+HFILES=../../include/plumb.h
+
+INCLUDES=-I../../include
+
+CFLAGS += $(INCLUDES) -D_POSIX_SOURCE
+
+CC=cc
+
+$(LIB): $(OFILES)
+ ar r $(LIB) $(OFILES)
+
+clean:
+ rm -rf $(TARG) $(OFILES)
+