loader: Remove d_type from devdesc.
[unleashed.git] / usr / src / boot / sys / boot / zfs / Makefile.com
blob9873feb785bc2c1f29d16165669520b624dfbd96
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>
14 # Copyright 2016 RackTop Systems.
17 include $(SRC)/Makefile.master
19 LIB=            zfsboot
21 all: libzfsboot.a
23 clean: clobber
25 clobber:
26         $(RM) machine x86 $(OBJS) libzfsboot.a
28 CC=     $(GCC_ROOT)/bin/gcc
29 CPPFLAGS=
31 SRCS +=         ../zfs.c ../gzip.c
32 OBJS +=         zfs.o gzip.o
34 CFLAGS= -O2 -nostdinc -I../../../../include -I../../..
35 CFLAGS +=       -I../../common -I../../.. -I.. -I.
36 CFLAGS +=       -I../../../../lib/libstand
37 CFLAGS +=       -I../../../../lib/libz
38 CFLAGS +=       -I../../../cddl/boot/zfs
40 CFLAGS +=       -ffreestanding
41 CFLAGS +=       -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
42 CFLAGS +=       -Wformat -Wall -std=gnu99
44 CLEANFILES +=    machine x86
46 machine:
47         $(RM) machine
48         $(SYMLINK) ../../../$(MACHINE)/include machine
50 x86:
51         $(RM) x86
52         $(SYMLINK) ../../../x86/include x86
54 $(OBJS): machine x86
56 libzfsboot.a: $(OBJS)
57         $(AR) $(ARFLAGS) $@ $(OBJS)
59 %.o:    ../%.c
60         $(COMPILE.c) -o $@ $<
62 zfs.o: ../zfsimpl.c