summaryrefslogtreecommitdiff
path: root/libfetch/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'libfetch/GNUmakefile')
-rw-r--r--libfetch/GNUmakefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/libfetch/GNUmakefile b/libfetch/GNUmakefile
new file mode 100644
index 0000000..75598b8
--- /dev/null
+++ b/libfetch/GNUmakefile
@@ -0,0 +1,47 @@
+TOPDIR = ..
+
+SUBDIRS =
+
+-include $(TOPDIR)/makefiles/gmake/platform.mk
+
+INCLUDE_CFLAGS = \
+ -DHAVE_CONFIG_H=0 -D_XOPEN_SOURCE=600
+
+INCLUDE_LDFLAGS = \
+
+INCLUDE_DIRS = \
+ -I.
+
+INCLUDE_LIBS = \
+
+OBJS = \
+ common.o \
+ fetch.o \
+ file.o \
+ ftp.o \
+ http.o
+
+STATIC_LIB = \
+ libfetch.a
+
+-include $(TOPDIR)/makefiles/gmake/sub.mk
+
+ftperr.h: ftp.errors GNUmakefile errlist.sh
+ ./errlist.sh ftp_errlist FTP \
+ ftp.errors > $@
+
+httperr.h: http.errors GNUmakefile errlist.sh
+ ./errlist.sh http_errlist HTTP \
+ http.errors > $@
+
+local_all:
+
+local_clean:
+
+local_distclean:
+
+local_install:
+
+local_uninstall:
+
+local_test: