summaryrefslogtreecommitdiffstats
path: root/utils/Makefile
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-19 06:28:35 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-19 06:28:35 +0000
commit8e7a9bc91b98a02e41dd6d53e8a2027c482346a8 (patch)
tree1c94bb1caace167e96375666ad0cc9467e83d471 /utils/Makefile
parent34e94e67312be97452e79939ae7104afae3c041b (diff)
downloadanaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.tar.gz
anaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.tar.xz
anaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.zip
more merging fun from the hampton branch. I'm pretty sure this doesn't
work now, at least in gui. text mode might, though
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 378b7c09b..66693ee9a 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -33,6 +33,15 @@ moddeps: moddeps.o moduledeps.o
-lmodutils -lmodutilobj -lmodutilutil \
-lpopt -lbz2
+md5.o: md5.c md5.h
+ gcc -c -O -g md5.c
+
+implantisomd5: implantisomd5.c md5.o
+ gcc -O -g -o implantisomd5 implantisomd5.c md5.o -lm
+
+checkisomd5: checkisomd5.c md5.o
+ gcc -O -g -o checkisomd5 -DTESTING checkisomd5.c md5.o -lm
+
genhdlist: genhdlist.c hash.c
$(CC) $(LDFLAGS) $(CFLAGS) $(RPMCFLAGS) -o genhdlist genhdlist.c hash.c -lrpm -lrpmdb -lrpmio \
-lbz2 -lz -lpopt
@@ -48,12 +57,15 @@ install: all
install -m755 filtermoddeps $(DESTDIR)/$(RUNTIMEDIR)
install -m755 -s modlist $(DESTDIR)/$(RUNTIMEDIR)
install -m755 -s checkcards.py $(DESTDIR)/$(RUNTIMEDIR)
+ install -m755 -s checkisomd5 $(DESTDIR)/$(RUNTIMEDIR)
+ install -m755 -s implantisomd5 $(DESTDIR)/$(RUNTIMEDIR)
#
# removed genhdlist from clean line so it will be distributed on CDROM image
#
clean:
rm -f modlist moddeps snarffont genhdlist mapshdr readmap *.o
+ rm -f implantisomd5 checkisomd5
depend:
$(CPP) -M $(CFLAGS) *.c > .depend