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.

19 lines
435 B

  1. CFLAGS = -fPIC -D_FILE_OFFSET_BITS=64 -O -Wall -Werror
  2. OBJECTS = md5.o implantisomd5.o libcheckisomd5.o implantisomd5.o checkisomd5.o
  3. SOURCES = $(patsubst %.o,%.c,$(OBJECTS))
  4. LDFLAGS = -lpopt
  5. all: implantisomd5 checkisomd5
  6. %.o: %.c
  7. gcc -c -O $(CFLAGS) -o $@ $<
  8. implantisomd5: implantisomd5.o md5.o libimplantisomd5.o
  9. checkisomd5: checkisomd5.o md5.o libcheckisomd5.o
  10. clean:
  11. rm -f *.o *.lo *~
  12. rm -f implantisomd5 checkisomd5