Introduction
Introduction Statistics Contact Development Disclaimer Help
Remove line-breaks from Makefile - farbfeld - suckless image format with conver…
git clone git://git.suckless.org/farbfeld
Log
Files
Refs
README
LICENSE
---
commit d8796e33f347b92a6526a1f3e6da8f5ddae7391b
parent 47a5f38ce9d44b5c3c0dad9e7824c8e2156a203d
Author: FRIGN <[email protected]>
Date: Sun, 3 Apr 2016 22:17:33 +0200
Remove line-breaks from Makefile
Even though I like line-length limits, it imposed a useless limitation
on the console output, given the line input is variable.
Diffstat:
M Makefile | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -12,12 +12,10 @@ MAN5 = farbfeld.5
all: ${BIN}
png2ff ff2png:
- ${CC} -o $@ ${CFLAGS} ${CPPFLAGS} -L${PNGLIB} -lpng -I${PNGINC} \
- ${LDFLAGS} [email protected]
+ ${CC} -o $@ ${CFLAGS} ${CPPFLAGS} -L${PNGLIB} -lpng -I${PNGINC} ${LDFL…
jpg2ff ff2jpg:
- ${CC} -o $@ ${CFLAGS} ${CPPFLAGS} -L${JPGLIB} -ljpeg -I${JPGINC} \
- ${LDFLAGS} [email protected]
+ ${CC} -o $@ ${CFLAGS} ${CPPFLAGS} -L${JPGLIB} -ljpeg -I${JPGINC} ${LDF…
.c:
${CC} -o $@ ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} $<
@@ -28,10 +26,8 @@ clean:
dist:
rm -rf "farbfeld-${VERSION}"
mkdir -p "farbfeld-${VERSION}"
- cp -R FORMAT LICENSE Makefile README TODO config.mk \
- ${SCRIPTS} ${HDR} ${SRC} ${MAN1} ${MAN5} "farbfeld-${VERSION}"
- tar -cf - "farbfeld-${VERSION}" | \
- gzip -c > "farbfeld-${VERSION}.tar.gz"
+ cp -R FORMAT LICENSE Makefile README TODO config.mk ${SCRIPTS} ${HDR} …
+ tar -cf - "farbfeld-${VERSION}" | gzip -c > "farbfeld-${VERSION}.tar.g…
rm -rf "farbfeld-${VERSION}"
install: all
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.