diff options
author | Paul Selkirk <paul@psgd.org> | 2016-06-20 22:46:18 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-06-20 22:46:18 -0400 |
commit | 5a0fb1ce24abe38ada705327868a5601b59e8ec4 (patch) | |
tree | 21355ad227847620d0c5454c5af600c6916fa378 /libraries/thirdparty/ekermit/Makefile | |
parent | d24c7c38def470aa0615212a5afd007f091b750a (diff) |
E-Kermit, for file upload goodness
Diffstat (limited to 'libraries/thirdparty/ekermit/Makefile')
-rw-r--r-- | libraries/thirdparty/ekermit/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libraries/thirdparty/ekermit/Makefile b/libraries/thirdparty/ekermit/Makefile new file mode 100644 index 0000000..8dd856f --- /dev/null +++ b/libraries/thirdparty/ekermit/Makefile @@ -0,0 +1,17 @@ +EKERMIT = ../../../../thirdparty/ekermit + +vpath %.c $(EKERMIT) + +OBJS = kermit.o stm-kermit.o + +LIB = libekermit.a + +CFLAGS += -I$(EKERMIT) -DSTATIC=static -DRECVONLY -DMINSIZE #-DDEBUG + +all: $(LIB) + +$(LIB): $(OBJS) + $(AR) -r $@ $(OBJS) + +clean: + rm -f $(OBJS) $(LIB) |