diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-18 01:18:25 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-18 01:18:25 +0000 |
commit | a6576f16b38706d235c47fde62f753b486db5709 (patch) | |
tree | bb144ed26418267e05ff0c538742e3e036fb9517 /loader/Makefile | |
parent | abb4ce1b89867550a54d2ec660551597872e9cf5 (diff) | |
download | anaconda-a6576f16b38706d235c47fde62f753b486db5709.tar.gz anaconda-a6576f16b38706d235c47fde62f753b486db5709.tar.xz anaconda-a6576f16b38706d235c47fde62f753b486db5709.zip |
added ftp?
Diffstat (limited to 'loader/Makefile')
-rw-r--r-- | loader/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/loader/Makefile b/loader/Makefile index 1b8912209..a27bcd226 100644 --- a/loader/Makefile +++ b/loader/Makefile @@ -1,6 +1,6 @@ DESTDIR = ../../trees/initrd -OBJS = loader.o log.o windows.o modules.o devices.o net.o cdrom.o +OBJS = loader.o log.o windows.o modules.o devices.o net.o cdrom.o urls.o SOURCES = $(subst .o,.c,$(OBJS)) BINS = loader init @@ -32,13 +32,13 @@ VERSION = 6.0 all: $(BINS) install: all - mkdir -p $(DESTDIR)/sbin - mkdir -p $(DESTDIR)/etc - rm -f $(DESTDIR)/sbin/loader - rm -f $(DESTDIR)/sbin/init - install -s loader $(DESTDIR)/sbin/loader - install -s init $(DESTDIR)/sbin/init - install -m 755 ../isys/pci/pcitable $(DESTDIR)/etc + #mkdir -p $(DESTDIR)/sbin + #mkdir -p $(DESTDIR)/etc + #rm -f $(DESTDIR)/sbin/loader + #rm -f $(DESTDIR)/sbin/init + #install -s loader $(DESTDIR)/sbin/loader + #install -s init $(DESTDIR)/sbin/init + #install -m 755 ../isys/pci/pcitable $(DESTDIR)/etc loader: $(OBJS) $(CC) -g $(STATIC) -o $@ $(OBJS) -lpopt \ |