summaryrefslogtreecommitdiff
path: root/host/zebvty/Makefile
diff options
context:
space:
mode:
authorlaforge <laforge@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2006-09-12 17:37:00 +0000
committerlaforge <laforge@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2006-09-12 17:37:00 +0000
commit8bd3d51b23e328e91c209dbebe8cfe002b0b0042 (patch)
tree5145facfb2f864519fd9e4914929f5da6d8be1fa /host/zebvty/Makefile
parent5fdccde69e5288b147c7c3ed81c412c18c5d5d54 (diff)
move to new directory
git-svn-id: https://svn.openpcd.org:2342/trunk@193 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'host/zebvty/Makefile')
-rw-r--r--host/zebvty/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/host/zebvty/Makefile b/host/zebvty/Makefile
new file mode 100644
index 0000000..dcaf1a2
--- /dev/null
+++ b/host/zebvty/Makefile
@@ -0,0 +1,19 @@
+#include ../../makevars
+
+OBJS=vector.o command.o buffer.o vty.o
+CFLAGS+=-fPIC
+NAME=zebvty
+
+all: lib$(NAME).a lib$(NAME).so
+
+lib$(NAME).a: $(OBJS)
+ $(AR) r $@ $^
+
+lib$(NAME).so: $(OBJS)
+ $(LD) -x --shared -o $@ $^
+
+%.o: %.c
+ $(CC) $(CFLAGS) -o $@ -c $^
+
+clean:
+ @rm -f *.o lib$(NAME).a lib$(NAME).so
personal git repositories of Harald Welte. Your mileage may vary