1*4b529e40SToomas Soome# 2*4b529e40SToomas Soome# This file and its contents are supplied under the terms of the 3*4b529e40SToomas Soome# Common Development and Distribution License ("CDDL"), version 1.0. 4*4b529e40SToomas Soome# You may only use this file in accordance with the terms of version 5*4b529e40SToomas Soome# 1.0 of the CDDL. 6*4b529e40SToomas Soome# 7*4b529e40SToomas Soome# A full copy of the text of the CDDL should have accompanied this 8*4b529e40SToomas Soome# source. A copy of the CDDL is also available via the Internet at 9*4b529e40SToomas Soome# http://www.illumos.org/license/CDDL. 10*4b529e40SToomas Soome# 11*4b529e40SToomas Soome 12*4b529e40SToomas Soome# 13*4b529e40SToomas Soome# Copyright 2017 Toomas Soome <tsoome@me.com> 14*4b529e40SToomas Soome# 15*4b529e40SToomas Soome 16*4b529e40SToomas Soomeinclude ../Makefile.cmd 17*4b529e40SToomas Soomeinclude ../Makefile.ctf 18*4b529e40SToomas Soomeinclude Makefile.common 19*4b529e40SToomas Soome 20*4b529e40SToomas Soome.KEEP_STATE: 21*4b529e40SToomas Soome 22*4b529e40SToomas Soomeall: $(PROG) 23*4b529e40SToomas Soome 24*4b529e40SToomas Soome$(PROG): $(OBJS) 25*4b529e40SToomas Soome $(LINK.c) -o $@ $(OBJS) $(LDLIBS) 26*4b529e40SToomas Soome $(POST_PROCESS) 27*4b529e40SToomas Soome 28*4b529e40SToomas Soomeinstall: all $(ROOTPROG) 29*4b529e40SToomas Soome 30*4b529e40SToomas Soomeclean: 31*4b529e40SToomas Soome $(RM) $(OBJS) 32*4b529e40SToomas Soome 33*4b529e40SToomas Soomeinclude ../Makefile.targ 34