#
# Makefile for the linux compression routines.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

.S.o:
	$(CC) $(AFLAGS) -traditional -c $< -o $*.o

O_TARGET := lzv.o

ifeq ($(CONFIG_EXT2_COMPR_X86_CODE),y)
obj-y   := e2compr_lzv.o rlzv1.o wlzv1.o
else
obj-y   := e2compr_lzv.o lzv1.o
endif

obj-m   := $(O_TARGET)

include $(TOPDIR)/Rules.make
