diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |