summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ecp/src/ecp/dir/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/ecp/src/ecp/dir/Makefile b/ecp/src/ecp/dir/Makefile
new file mode 100644
index 0000000..9da375b
--- /dev/null
+++ b/ecp/src/ecp/dir/Makefile
@@ -0,0 +1,13 @@
+include ../common.mk
+
+obj = dir.o dir_srv.o
+
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c $<
+
+all: $(obj)
+ $(AR) rcs libecpdir.a $(obj)
+
+clean:
+ rm -f *.o *.a