diff options
author | Andy Fiddaman <omnios@citrus-it.co.uk> | 2022-02-25 15:58:34 +0000 |
---|---|---|
committer | Andy Fiddaman <omnios@citrus-it.co.uk> | 2022-03-12 15:17:18 +0000 |
commit | 311330e6823a3a919ff127757c2f0cf9eb17aa0e (patch) | |
tree | fc11591abd3255b07149794c8d92031d0e20849e /usr/src | |
parent | 29ed14768e5e76bb8c95f0a28b4d21d8741dfabe (diff) | |
download | illumos-gate-311330e6823a3a919ff127757c2f0cf9eb17aa0e.tar.gz |
14539 bhyve: make clobber removes proto file
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Gordon Ross <gordon.w.ross@gmail.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/cmd/bhyve/Makefile | 9 | ||||
-rw-r--r-- | usr/src/cmd/bhyve/test/Makefile.com | 2 |
2 files changed, 5 insertions, 6 deletions
diff --git a/usr/src/cmd/bhyve/Makefile b/usr/src/cmd/bhyve/Makefile index 72885e3633..eac7311d30 100644 --- a/usr/src/cmd/bhyve/Makefile +++ b/usr/src/cmd/bhyve/Makefile @@ -13,7 +13,7 @@ # Copyright 2014 Pluribus Networks Inc. # Copyright 2020 Joyent, Inc. # Copyright 2020 Oxide Computer Company -# Copyright 2021 OmniOS Community Edition (OmniOSce) Association. +# Copyright 2022 OmniOS Community Edition (OmniOSce) Association. # PROG = bhyve @@ -105,13 +105,12 @@ SRCS = acpi.c \ OBJS = $(SRCS:.c=.o) -CLOBBERFILES = $(ROOTUSRSBINPROG) - MEVENT_TEST_PROG = mevent_test MEVENT_TEST_SRCS = mevent.c mevent_test.c MEVENT_TEST_OBJS = $(MEVENT_TEST_SRCS:.c=.o) -CLEANFILES = $(PROG) $(MEVENT_TEST_PROG) $(MEVENT_TEST_OBJS) +CLEANFILES = $(OBJS) $(MEVENT_TEST_OBJS) +CLOBBERFILES = $(PROG) $(MEVENT_TEST_PROG) CFLAGS += $(CCVERBOSE) CFLAGS += -_gcc=-Wimplicit-function-declaration -_gcc=-Wno-parentheses @@ -176,7 +175,7 @@ $(MEVENT_TEST_PROG): $(MEVENT_TEST_OBJS) install: all $(ROOTUSRSBINPROG) $(SUBDIRS) clean: $(SUBDIRS) - $(RM) $(OBJS) $(CLEANFILES) + $(RM) $(CLEANFILES) clobber: clean $(SUBDIRS) $(RM) $(CLOBBERFILES) diff --git a/usr/src/cmd/bhyve/test/Makefile.com b/usr/src/cmd/bhyve/test/Makefile.com index 244d2e215b..1d1aa1e630 100644 --- a/usr/src/cmd/bhyve/test/Makefile.com +++ b/usr/src/cmd/bhyve/test/Makefile.com @@ -33,7 +33,7 @@ LDFLAGS += -lproc SMOFF += all_func_returns -CLEANFILES += $(PROG) +CLOBBERFILES += $(PROG) # # Install related definitions |