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
525 B

  1. --- ./Makefile.orig 2004-06-27 01:18:28.370283816 +0200
  2. +++ ./Makefile 2004-06-27 01:25:31.611941304 +0200
  3. @@ -1,5 +1,6 @@
  4. CC = gcc
  5. CFLAGS = -O2 -Wall
  6. +PREFIX = /usr
  7. all: elftoaout
  8. @@ -7,8 +8,8 @@
  9. $(CC) $(CFLAGS) -o elftoaout elftoaout.c
  10. install: elftoaout
  11. - install -m 0755 -s elftoaout /usr/bin/elftoaout
  12. - install -m 0644 elftoaout.1 /usr/man/man1/elftoaout.1
  13. + install -m 0755 -s elftoaout $(PREFIX)/bin/elftoaout
  14. + install -m 0644 elftoaout.1 $(PREFIX)/man/man1/elftoaout.1
  15. clean:
  16. rm -f *~ *.[soa] core