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
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 #
  13 # Copyright 2016 Toomas Soome <tsoome@me.com>
  14 #
  15 
  16 include $(SRC)/Makefile.master
  17 
  18 LIB=            zfsboot
  19 
  20 all: machine x86 libzfsboot.a
  21 clean: clobber
  22 
  23 clobber:
  24         $(RM) machine x86 $(OBJS) libzfsboot.a
  25 
  26 CC=     $(GCC_ROOT)/bin/gcc
  27 CPPFLAGS=
  28 
  29 SRCS +=         ../zfs.c ../gzip.c
  30 OBJS +=         zfs.o gzip.o
  31 
  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
  37 
  38 CFLAGS +=       -ffreestanding
  39 CFLAGS +=       -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
  40 CFLAGS +=       -Wformat -Wall -std=gnu99
  41 
  42 CLEANFILES +=    machine x86
  43 
  44 machine:
  45         $(RM) machine
  46         $(SYMLINK) ../../../$(MACHINE)/include machine
  47 
  48 x86:
  49         $(RM) x86
  50         $(SYMLINK) ../../../x86/include x86
  51 
  52 libzfsboot.a: $(OBJS)
  53         $(AR) $(ARFLAGS) $@ $(OBJS)
  54 
  55 %.o:    ../%.c
  56         $(COMPILE.c) -o $@ $<
  57 
  58 zfs.o: ../zfsimpl.c