|
root / base / usr / src / lib / libutil / Makefile
Makefile Makefile 33 lines 476 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Copyright 2026 Zygaena Project Contributors
# Use is subject to license terms.
#

include ../Makefile.lib

HDRS =		libutil.h pty.h
HDRDIR =	$(SRC)/head

# Hammerhead: amd64-only
SUBDIRS = $(MACH64)

all :		TARGET= all
clean :		TARGET= clean
clobber :	TARGET= clobber
install :	TARGET= install

.KEEP_STATE:

all clean clobber install: $(SUBDIRS)

install_h: $(ROOTHDRS)

check:	$(CHECKHDRS)

$(SUBDIRS):	FRC
	@cd $@; pwd; $(MAKE) $(TARGET)

FRC:

include ../Makefile.targ