1*4226f635SJason King# 2*4226f635SJason King# This file and its contents are supplied under the terms of the 3*4226f635SJason King# Common Development and Distribution License ("CDDL"), version 1.0. 4*4226f635SJason King# You may only use this file in accordance with the terms of version 5*4226f635SJason King# 1.0 of the CDDL. 6*4226f635SJason King# 7*4226f635SJason King# A full copy of the text of the CDDL should have accompanied this 8*4226f635SJason King# source. A copy of the CDDL is also available via the Internet at 9*4226f635SJason King# http://www.illumos.org/license/CDDL. 10*4226f635SJason King# 11*4226f635SJason King# Copyright 2018 Jason King. 12*4226f635SJason King# Copyright 2017, Joyent. Inc. 13*4226f635SJason King# 14*4226f635SJason King 15*4226f635SJason Kinginclude ../Makefile.lib 16*4226f635SJason King 17*4226f635SJason KingHDRS = demangle-sys.h 18*4226f635SJason KingHDRDIR = common 19*4226f635SJason KingSUBDIRS = $(MACH) 20*4226f635SJason King$(BUILD64)SUBDIRS += $(MACH64) 21*4226f635SJason King 22*4226f635SJason Kingall := TARGET= all 23*4226f635SJason Kingclean := TARGET= clean 24*4226f635SJason Kingclobber := TARGET= clobber 25*4226f635SJason Kinginstall := TARGET= install 26*4226f635SJason Kinglint := TARGET= lint 27*4226f635SJason King 28*4226f635SJason King.KEEP_STATE: 29*4226f635SJason King 30*4226f635SJason Kingall clean clobber install lint: $(SUBDIRS) 31*4226f635SJason King 32*4226f635SJason King$(SUBDIRS): FRC 33*4226f635SJason King @cd $@; pwd; $(MAKE) $(TARGET) 34*4226f635SJason King 35*4226f635SJason Kinginstall_h: $(ROOTHDRS) 36*4226f635SJason King 37*4226f635SJason Kingcheck: $(CHECKHDRS) 38*4226f635SJason King 39*4226f635SJason KingFRC: 40*4226f635SJason King 41*4226f635SJason Kinginclude ../Makefile.targ 42