mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
788 B

  1. --- ./Makefile.orig 2004-05-08 15:39:45.882594296 +0200
  2. +++ ./Makefile 2004-05-08 16:25:36.674410376 +0200
  3. @@ -6,7 +6,6 @@
  4. CFLAGS:=-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -s -I. -fno-strict-aliasing -fno-common -fomit-frame-pointer
  5. else
  6. include $(KERNEL_DIR)/.config
  7. -include $(KERNEL_DIR)/conf.vars
  8. endif
  9. CKERNOPS:=-D__KERNEL__ -DMODULE -fno-builtin -nostdlib -DKBUILD_MODNAME="cloop" -DKBUILD_BASENAME="cloop"
  10. @@ -50,3 +49,9 @@
  11. $(CC) -I$(KERNEL_DIR)/include -I$(KERNEL_DIR)/include/asm/mach-default $(CFLAGS) $(CKERNOPS) $< -c -o $@
  12. compressed_loop.o create_compressed_fs.o: compressed_loop.h
  13. +
  14. +install:
  15. + mkdir -p $(MODDIR)
  16. + install -m 755 cloop.o $(MODDIR)
  17. + install -m 755 create_compressed_fs $(PREFIX)/sbin
  18. + install -m 755 extract_compressed_fs $(PREFIX)/sbin