From c18c07a4a08f9277be7120fced7f471d16b141d1 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 23 Mar 2011 21:21:06 +0100 Subject: rename fb.c.in -> fb-upload.c.in Signed-off-by: Florian Pritz --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6604664..44af9cb 100644 --- a/Makefile +++ b/Makefile @@ -12,17 +12,17 @@ fb: fb.in sed 's|@VERSION@|$(VERSION)|; s|@LIBDIR@|$(LIBDIR)|' fb.in > fb chmod 755 fb -fb.c: fb.c.in - sed 's/@VERSION@/$(VERSION)/' fb.c.in > fb.c +fb-upload.c: fb-upload.c.in + sed 's/@VERSION@/$(VERSION)/' fb-upload.c.in > fb-upload.c -fb-upload: fb.c - $(CC) $(CFLAGS) -lcurl -lm -o fb-upload fb.c +fb-upload: fb-upload.c + $(CC) $(CFLAGS) -lcurl -lm -o fb-upload fb-upload.c fb.1: fb.pod pod2man -c "" fb.pod fb.1 clean: - rm -f fb.1 fb fb.c fb-upload + rm -f fb.1 fb fb-upload.c fb-upload rm -rf dist install: all @@ -38,7 +38,7 @@ uninstall: dist: all @[ -n "$(VERSION)" ] || (echo "Error: version detection failed"; exit 1) mkdir -p dist/fb-$(VERSION) - cp -a fb fb.c fb.in fb.pod fb.1 COPYING Makefile dist/fb-$(VERSION) + cp -a fb fb-upload.c fb.in fb.pod fb.1 COPYING Makefile dist/fb-$(VERSION) sed -i 's/^VERSION:=.*$$/VERSION:="'$(VERSION)'"/' dist/fb-$(VERSION)/Makefile cd dist; tar -czf fb-$(VERSION).tar.gz fb-$(VERSION) -- cgit v1.2.3-24-g4f1b