diff options
author | Matt Wilson <msw@redhat.com> | 2000-05-09 16:42:56 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-05-09 16:42:56 +0000 |
commit | 5d142d6136e3b650ccf220b762a696680872b4f2 (patch) | |
tree | 598c372022a4024a940b285f61e6b7bee663292a /edd | |
parent | 142ad3cab7635743c328a2999b2821b0f2659cb5 (diff) | |
download | anaconda-5d142d6136e3b650ccf220b762a696680872b4f2.tar.gz anaconda-5d142d6136e3b650ccf220b762a696680872b4f2.tar.xz anaconda-5d142d6136e3b650ccf220b762a696680872b4f2.zip |
install target
Diffstat (limited to 'edd')
-rw-r--r-- | edd/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/edd/Makefile b/edd/Makefile index dd9af299b..b49db086b 100644 --- a/edd/Makefile +++ b/edd/Makefile @@ -1,3 +1,5 @@ +include ../Makefile.inc + CFLAGS=-Wall -O -g -fpic -I/usr/include/python1.5# -DDEBUG TARGETS=eddmodule.so libedd.a(edd.o lrmi.o) @@ -12,6 +14,9 @@ everything: $(TARGET) all: $(TARGETS) +install: all + install eddmodule.so $(DESTDIR)/$(PYTHONLIBDIR) + edd: lrmi.c edd.c gcc -DDEBUG -o edd lrmi.c edd.c |