Browse Source

MT#55283 add lib/ Makefile

There is a generated file left behind (codeclib.strhash.c) that needs to
be cleaned up by `make clean`

Ref: https://bugs.debian.org/1101804
Change-Id: I22eef1124a84107478ef6058abb127eb65fc9aa5
pull/1924/head
Richard Fuchs 8 months ago
parent
commit
2c636fd1c1
2 changed files with 8 additions and 0 deletions
  1. +1
    -0
      Makefile
  2. +7
    -0
      lib/Makefile

+ 1
- 0
Makefile View File

@ -67,6 +67,7 @@ distclean clean:
$(MAKE) -C perf-tester clean
$(MAKE) -C kernel-module clean
$(MAKE) -C t clean
$(MAKE) -C lib clean
rm -f config.mk
.DEFAULT:


+ 7
- 0
lib/Makefile View File

@ -0,0 +1,7 @@
.PHONY: clean distclean
.DEFAULT:
true
clean distclean:
rm -f *.strhash.*

Loading…
Cancel
Save