diff options
author | Matt Wilson <msw@redhat.com> | 1999-05-03 21:14:31 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-05-03 21:14:31 +0000 |
commit | 0326f77c860cf57068cde4ad365451e7adbef268 (patch) | |
tree | cfbe72e33a557626eb3bc4089d3d531c6e5fc9c1 /rpmmodule | |
parent | 663a64b69379647e24bd23faf3bed61d683b4133 (diff) | |
download | anaconda-0326f77c860cf57068cde4ad365451e7adbef268.tar.gz anaconda-0326f77c860cf57068cde4ad365451e7adbef268.tar.xz anaconda-0326f77c860cf57068cde4ad365451e7adbef268.zip |
added install target
Diffstat (limited to 'rpmmodule')
-rw-r--r-- | rpmmodule/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rpmmodule/Makefile b/rpmmodule/Makefile index 989681ff8..50c4c0957 100644 --- a/rpmmodule/Makefile +++ b/rpmmodule/Makefile @@ -1,3 +1,4 @@ +DESTDIR = $TOPDIR/RedHat/instimage/usr/lib/python1.5/site-packages CFLAGS += -I/usr/include/rpm -I/usr/include/python1.5 -g @@ -10,3 +11,6 @@ rpmmodule.so: rpmmodule.o clean: rm -f *.o $(TARGET) + +install: all + cp $(TARGET) $(DESTDIR) |