commit d2412c93d1f4208792c2f451746611075f07e0af from: Klemens Nanni via: Thomas Adam date: Fri Oct 08 12:21:43 2021 UTC Provide lib/Makefile to enable tags file generation The root Makefile does not hook into lib/ via since it is not a program itself and thus gets included by all others. This means `make tags` skips lib/ and `make -C lib/ tags` does not know what to do; provide a minimal stub and hook it up just for the "tags" such that *all* source is browsable via tags. See /usr/share/mk/bsd.README for details. Feedback stsp tb OK tb commit - 35add24aa636945d591ac62534d3caf3e906621a commit + d2412c93d1f4208792c2f451746611075f07e0af blob - /dev/null blob + 10266461c5931bb1c273a4a15de3d4d4c5d7cdd0 (mode 644) --- /dev/null +++ lib/Makefile @@ -0,0 +1,4 @@ +# simple Makefile stub to make the "tags" target work +SRCS = *.c + +.include