diff options
author | Dave Reisner <d@falconindy.com> | 2011-04-07 09:01:46 -0400 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2011-04-07 09:01:55 -0400 |
commit | bad9776095209b2174b82cad9045f7d4a7a785fc (patch) | |
tree | a9e9a21b2eeaa12d645a1f9f176aa00863205e4f /Makefile | |
parent | e85f19c49684fb4d371b9b3adcd66752faed4998 (diff) | |
download | expac-bad9776095209b2174b82cad9045f7d4a7a785fc.tar.xz |
build-sys: cleanup
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,6 +3,8 @@ include config.mk SRC = expac.c OBJ = ${SRC:.c=.o} +DISTFILES = expac.c README.pod Makefile config.mk + all: expac doc .c.o: @@ -21,7 +23,7 @@ install: expac dist: clean mkdir expac-${VERSION} - cp Makefile expac.1 expac.c expac-${VERSION} + cp ${DISTFILES} expac-${VERSION} sed "s/^VERSION = .*/VERSION = ${VERSION}/" config.mk > expac-${VERSION}/config.mk tar cf - expac-${VERSION} | gzip -9 > expac-${VERSION}.tar.gz rm -rf expac-${VERSION} @@ -29,3 +31,4 @@ dist: clean clean: ${RM} ${OBJ} expac expac.1 +.PHONY: all clean dist doc install doc |