Skip to content

Commit

Permalink
Add missing files for the dist make target
Browse files Browse the repository at this point in the history
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
  • Loading branch information
ismaell committed Oct 6, 2017
1 parent c6c31e0 commit cd9c8c6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
SUBDIRS = src po

man_MANS = man/axel.1
dist_man_MANS = man/axel.1

EXTRA_DIST = \
CONTRIBUTING.md \
CREDITS \
doc/axelrc.example \
man/axel.txt \
man/generate-man.sh

distclean-local:
-rm -rf autom4te.cache/ \
Expand Down
19 changes: 18 additions & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
bin_PROGRAMS = axel
axel_SOURCES = axel.c conf.c conn.c ftp.c http.c search.c ssl.c tcp.c text.c
axel_SOURCES = \
axel.c \
axel.h \
conf.c \
conf.h \
conn.c \
conn.h \
ftp.c \
ftp.h \
http.c \
http.h \
search.c \
search.h \
ssl.c \
ssl.h \
tcp.c \
tcp.h \
text.c

AM_CPPFLAGS = -DLOCALEDIR=\""$(localedir)"\"
AM_CPPFLAGS += -D_BSD_SOURCE -D_DEFAULT_SOURCE

0 comments on commit cd9c8c6

Please sign in to comment.