blob: 1a3995508f2417311352e554fb2d8d78d92bbcfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include ../Makefile.inc
all:
gcc -c -O -g -D_FILE_OFFSET_BITS=64 md5.c
gcc -O -g -D_FILE_OFFSET_BITS=64 -o implantisomd5 implantisomd5.c md5.o -lm -lpopt
gcc -O -g -D_FILE_OFFSET_BITS=64 -o checkisomd5 checkisomd5.c md5.o -lm
install:
install -m 755 implantisomd5 $(DESTDIR)/$(RUNTIMEDIR)
install -m 755 checkisomd5 $(DESTDIR)/$(RUNTIMEDIR)
clean:
rm -f *.o
rm -f implantisomd5 checkisomd5
depend:
|