diff options
author | Yuri Pankov <yuri.pankov@nexenta.com> | 2017-06-11 14:41:06 +0300 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2017-06-19 13:08:57 -0400 |
commit | 5c25b6f10367f6cb7b3d8b8bc7e374712eb977c2 (patch) | |
tree | 7cb7ebf21b71e454d7cf797f93245fb71a6f6fb9 /usr/src/uts/intel/usbsacm | |
parent | eb28af623974cfc31cb4545d2965bbaca3fb6888 (diff) | |
download | illumos-joyent-5c25b6f10367f6cb7b3d8b8bc7e374712eb977c2.tar.gz |
8367 remove warlock leftovers from usr/src/uts Makefiles
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/uts/intel/usbsacm')
-rw-r--r-- | usr/src/uts/intel/usbsacm/Makefile | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/usr/src/uts/intel/usbsacm/Makefile b/usr/src/uts/intel/usbsacm/Makefile index 390c663a59..23da8c76d0 100644 --- a/usr/src/uts/intel/usbsacm/Makefile +++ b/usr/src/uts/intel/usbsacm/Makefile @@ -38,9 +38,6 @@ MODULE = usbsacm OBJECTS = $(USBSACM_OBJS:%=$(OBJS_DIR)/%) LINTS = $(USBSACM_OBJS:%.o=$(LINTS_DIR)/%.ln) ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) -WARLOCK_OUT = $(USBSACM_OBJS:%.o=%.ll) -WARLOCK_OK = $(MODULE).ok -WLCMD_DIR = $(UTSBASE)/common/io/warlock # # Include common rules. @@ -65,10 +62,8 @@ all: $(ALL_DEPS) def: $(DEF_DEPS) clean: $(CLEAN_DEPS) - $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) clobber: $(CLOBBER_DEPS) - $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) lint: $(LINT_DEPS) @@ -82,61 +77,3 @@ install: $(INSTALL_DEPS) # Include common targets. # include $(UTSBASE)/intel/Makefile.targ - -# -# Defines for local commands. -# -WLCC = wlcc -TOUCH = touch -WARLOCK = warlock -TEST = test - -# -# warlock -# -WARLOCK_CMD = $(WLCMD_DIR)/$(MODULE).wlcmd - -USBSER_FILES = $(USBSER_OBJS:%.o=../usbser/%.ll) -USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll) -UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) -OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) -EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) - -warlock: $(WARLOCK_OK) - -$(WARLOCK_OK): warlock_with_usbser warlock_with_usba - $(TOUCH) $@ - -%.ll: $(UTSBASE)/common/io/usb/clients/usbser/usbsacm/%.c - $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< - -warlock_with_usbser: $(WARLOCK_OUT) usbser_files warlock_ddi.files \ - $(WARLOCK_CMD) - $(WARLOCK) -c $(WARLOCK_CMD) $(WARLOCK_OUT) \ - $(USBSER_FILES) -l ../warlock/ddi_dki_impl.ll - -warlock_with_usba: $(WLCMD_DIR)/usbsacm_with_usba.wlcmd $(WARLOCK_OUT) \ - usbser_files usba_files ohci_files uhci_files ehci_files \ - warlock_ddi.files - $(WARLOCK) -c $(WLCMD_DIR)/usbsacm_with_usba.wlcmd \ - $(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \ - $(USBSER_FILES) \ - $(WARLOCK_OUT) -l ../warlock/ddi_dki_impl.ll - -usbser_files: - @cd ../usbser; pwd; $(MAKE) warlock - -usba_files: - @cd ../usba;pwd; $(MAKE) warlock - -uhci_files: - @cd ../uhci;pwd; $(MAKE) warlock - -ohci_files: - @cd ../ohci;pwd; $(MAKE) warlock - -ehci_files: - @cd ../ehci;pwd; $(MAKE) warlock - -warlock_ddi.files: - cd ../warlock; pwd; $(MAKE) warlock |