# Makefile for isdn_lzscomp # # (C) 2001 Malte J. Wetz # MODDIR=/lib/modules/`uname -r`/misc/ OBJECTS=isdn_lzscomp.o # Enable this line if your kernel is compiled *without* modversions: CFLAGS=-O2 -I/usr/src/linux/include -D__KERNEL__ -DMODULE # Enable these lines if your kernel is compiled *with* modversions: ##CFLAGS=-O2 -I/usr/src/linux/include -Wall -D__KERNEL__ -DMODULE \ ##-DMODVERSIONS -include /usr/src/linux/include/linux/modversions.h modules: $(OBJECTS) all: modules clean: rm -rf *.o install: all mkdir -p $(MODDIR) install -o root -g root -m 644 $(OBJECTS) $(MODDIR)