Makefile (afc2ba1deb75b323afde536f2dd18bcafdaa308d) | Makefile (8aafd47d0dbabbca4365c9565fbe0e051e7346dd) |
---|---|
1# 2# This file and its contents are supplied under the terms of the 3# Common Development and Distribution License ("CDDL"), version 1.0. 4# You may only use this file in accordance with the terms of version 5# 1.0 of the CDDL. 6# 7# A full copy of the text of the CDDL should have accompanied this 8# source. A copy of the CDDL is also available via the Internet at --- 17 unchanged lines hidden (view full) --- 26install := TARGET = install 27clean := TARGET = clean 28clobber := TARGET = clobber 29 30.KEEP_STATE: 31 32all: $(SUBDIRS) 33 | 1# 2# This file and its contents are supplied under the terms of the 3# Common Development and Distribution License ("CDDL"), version 1.0. 4# You may only use this file in accordance with the terms of version 5# 1.0 of the CDDL. 6# 7# A full copy of the text of the CDDL should have accompanied this 8# source. A copy of the CDDL is also available via the Internet at --- 17 unchanged lines hidden (view full) --- 26install := TARGET = install 27clean := TARGET = clean 28clobber := TARGET = clobber 29 30.KEEP_STATE: 31 32all: $(SUBDIRS) 33 |
34clean clobber lint: $(SUBDIRS) | 34all install clean clobber: $(SUBDIRS) |
35 | 35 |
36install: $(SUBDIRS) 37 -$(RM) $(ROOTPROG) 38 -$(LN) $(ISAEXEC) $(ROOTPROG) 39 | |
40$(SUBDIRS): FRC 41 @cd $@; pwd; $(MAKE) $(TARGET) 42 43FRC: 44 45include ../Makefile.targ | 36$(SUBDIRS): FRC 37 @cd $@; pwd; $(MAKE) $(TARGET) 38 39FRC: 40 41include ../Makefile.targ |