comm: add -Wall
[unleashed.git] / usr / src / cmd / ficl / Makefile
blobbcce079fa8e6f5ff74d161f48efb6beb810ac2ba
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.
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
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2016 Toomas Soome <tsoome@me.com>
15 # cmd/ficl/Makefile
18 PROG= ficl-sys
20 include ../Makefile.cmd
22 SUBDIRS= $(MACH)
23 $(BUILD64)SUBDIRS += $(MACH64)
25 all := TARGET = all
26 install := TARGET = install
27 clean := TARGET = clean
28 clobber := TARGET = clobber
30 .KEEP_STATE:
32 all: $(SUBDIRS)
34 clean clobber: $(SUBDIRS)
36 install: $(SUBDIRS)
37 -$(RM) $(ROOTPROG)
38 -$(LN) $(ISAEXEC) $(ROOTPROG)
40 $(SUBDIRS): FRC
41 @cd $@; pwd; $(MAKE) $(TARGET)
43 FRC:
45 include ../Makefile.targ