blob: 9f71d0814d45c2eb471b8900583305cbb03a23ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# Makefile for the linux cramfs routines.
#
O_TARGET := cramfs.o
O_OBJS := inode.o uncompress.o inflate/zlib.o
M_OBJS := $(O_TARGET)
include $(TOPDIR)/Rules.make
inflate/zlib.o:
make -C inflate
|