blob: 9b20db1625b48a9c5ec16a3a5a4f3efdb5f829fb [file] [log] [blame]
#
# Kbuild file for fstype
#
static-y := static/fstype
shared-y := shared/fstype
# common .o files
objs := main.o fstype.o
# TODO - do we want a stripped version
# TODO - do we want the static.g + shared.g directories?
# Create built-in.o with all object files (used by kinit)
lib-y := $(objs)
# .o files used to built executables
static/fstype-y := $(objs)
shared/fstype-y := $(objs)
# Cleaning
clean-dirs := static shared
# install binary
install-y := $(shared-y)