loader: fix command paths
[unleashed.git] / usr / src / boot / sys / boot / zfs / Makefile.com
blobbb11ab91d63bc44da3a6ec7bf51f44fffd0c8fd0
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>
16 include $(SRC)/Makefile.master
18 LIB=            zfsboot
20 all: machine x86 libzfsboot.a
21 clean: clobber
23 clobber:
24         $(RM) machine x86 $(OBJS) libzfsboot.a
26 CC=     $(GCC_ROOT)/bin/gcc
27 CPPFLAGS=
29 SRCS +=         ../zfs.c ../gzip.c
30 OBJS +=         zfs.o gzip.o
32 CFLAGS= -O2 -nostdinc -I../../../../include -I../../..
33 CFLAGS +=       -I../../common -I../../.. -I.. -I.
34 CFLAGS +=       -I../../../../lib/libstand
35 CFLAGS +=       -I../../../../lib/libz
36 CFLAGS +=       -I../../../cddl/boot/zfs
38 CFLAGS +=       -ffreestanding
39 CFLAGS +=       -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
40 CFLAGS +=       -Wformat -Wall -std=gnu99
42 CLEANFILES +=    machine x86
44 machine:
45         $(RM) machine
46         $(SYMLINK) ../../../$(MACHINE)/include machine
48 x86:
49         $(RM) x86
50         $(SYMLINK) ../../../x86/include x86
52 libzfsboot.a: $(OBJS)
53         $(AR) $(ARFLAGS) $@ $(OBJS)
55 %.o:    ../%.c
56         $(COMPILE.c) -o $@ $<
58 zfs.o: ../zfsimpl.c