aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 47a1db2..42bb73a 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,7 @@ TRANSLATIONS = pt fr eo
.in:
sed -e 's:@VERSION@:$(VERSION):g' -e 's:@DATE@:$(DATE):g' < $< > $@
+ if [ -x $< ]; then chmod +x $@; fi
.c:
$(CC) $(CFLAGS) $(LDFLAGS) $(DEFS) -o $@ $< $(LDLIBS)
@@ -31,7 +32,6 @@ manpages.in = $(manpages.en.in) \
manpages = $(manpages.in:.in=)
all: src/remembering src/remembering-c $(manpages)
- chmod +x src/remembering
run-tests: src/remembering-c.c
$(CC) $(CFLAGS) $(LDFLAGS) $(DEFS) -DTEST -o $@ $? $(LDLIBS)