summaryrefslogtreecommitdiffstats
path: root/usr/kinit/fstype/Kbuild
blob: 631eb32698f39bd1bcedb673f54f88ab56e92830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# 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
ifdef KLIBCSHAREDFLAGS
install-y := $(shared-y)
else
install-y := $(static-y)
endif