File: Makefile

package info (click to toggle)
runit 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,220 kB
  • sloc: ansic: 5,572; sh: 3,588; makefile: 383
file content (12 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# Build contrib'd binaries from a separate makefile to avoid recursive make
# invocation allocating new canaries and any other unexpected magic.
# -- Andrew Bower <andrew@bower.uk>  Thu, 09 Jan 2025 18:12:00 +0000

.PHONY: all clean

TARGETS=shutdown lib/async-timeout

all: $(TARGETS)

clean:
	$(RM) $(TARGETS)