summaryrefslogtreecommitdiffstats
path: root/isomd5sum/Makefile
blob: 1292fac620f84f62f4cf97b166bac72f6f04befe (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 md5.c
	gcc -O -g -o implantisomd5 implantisomd5.c md5.o -lm
	gcc -O -g -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: