kernel: ~Stack can grow now (upto 4MB)
[meinos.git] / apps / ext2 / Makefile
blobef316fc60d1a94daea6f0ff1dcca1376c5663ebb
1 -include ../../Makefile.config
3 SOURCES = dir.c \
4 file.c \
5 init.c \
6 libext2_cache.c \
7 main.c \
8 res.c \
9 resources.c \
10 symlinks.c \
11 libext2/directory.c \
12 libext2/file.c \
13 libext2/fs.c \
14 libext2/inode.c \
15 libext2/superblock.c \
16 libext2/symlink.c
18 all: ext2 ext2.objdump
19 cp $< ../../files/bin
21 ext2: $(SOURCES)
22 $(APPS_CC) -o $@ $^ -Ilibext2/include -lcdi
24 ext2.objdump: ext2
25 $(APPS_OBJDUMP) -d -S $^ > $@
27 clean:
28 rm -f ext2 *.objdump