makefiles: fix whitespace

With a fun little script:

    $ git ls-files -z -- '*Makefile*' |
      xargs -0 -I '{}' sh -c \
      "test -s '{}' && printf '%s\n' \"\`git stripspace <'{}'\`\" >'{}'"
This commit is contained in:
Kelvin M. Klann 2021-02-10 20:58:37 -03:00
parent 9b56dc8e94
commit 00437760d9
3 changed files with 0 additions and 4 deletions

View file

@ -44,7 +44,6 @@ mydirs: $(MYDIRS)
$(MYDIRS):
$(MAKE) -C $@
$(MANPAGES): src/man
./mkman.sh $(VERSION) src/man/$(basename $@).man $@
@ -232,7 +231,6 @@ cppcheck: clean
scan-build: clean
NO_EXTRA_CFLAGS="yes" scan-build make
#
# make test
#

View file

@ -19,7 +19,6 @@ all: libtrace.so
libtrace.so: $(OBJS)
$(CC) $(LDFLAGS) -shared -fPIC -z relro -o $@ $(OBJS) -ldl
clean:; rm -fr $(OBJS) libtrace.so *.plist
distclean: clean

View file

@ -19,7 +19,6 @@ all: libtracelog.so
libtracelog.so: $(OBJS)
$(CC) $(LDFLAGS) -shared -fPIC -z relro -o $@ $(OBJS) -ldl
clean:; rm -fr $(OBJS) libtracelog.so *.plist
distclean: clean