Makefile
author Dan Winship <danw@gnome.org>
Wed Feb 06 12:59:27 2008 -0500 (2008-02-06)
changeset 113 e408ff1d4a4d
parent 111 1af16eb9cf63
child 115 26edeea5c95a
permissions -rw-r--r--
pad repo files with 0 bytes, not random memory

so you can do:
./razor import-yum
mv rawhide.repo rawhide.repo.orig
make
./razor import-yum
diff rawhide.repo.orig rawhide.repo

(doesn't work with system.repo at the moment...)
     1 CFLAGS = -Wall -g
     2 LDLIBS = -lexpat -lz -g -lrpm -lcurl
     3 
     4 all : razor test-driver
     5 
     6 razor : razor.o yum.o main.o rpm.o util.o
     7 
     8 *.o : razor.h razor-internal.h
     9 
    10 test-driver : razor.o util.o test-driver.o
    11 
    12 test : test-driver
    13 	./test-driver test.xml
    14 
    15 clean :
    16 	rm -f *.o razor