summaryrefslogtreecommitdiffstats
path: root/ddcprobe/Makefile
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-01-04 23:02:05 +0000
committerJeremy Katz <katzj@redhat.com>2002-01-04 23:02:05 +0000
commitb9b5881f6eda165aceefa9cb7fd1e2e368643cc8 (patch)
treee21452250d5787921af3d3c71a39af88b218c6fc /ddcprobe/Makefile
parented890b0f92f57167f9a5d5ff12054883d0291576 (diff)
downloadanaconda-b9b5881f6eda165aceefa9cb7fd1e2e368643cc8.tar.gz
anaconda-b9b5881f6eda165aceefa9cb7fd1e2e368643cc8.tar.xz
anaconda-b9b5881f6eda165aceefa9cb7fd1e2e368643cc8.zip
we can just get this from kudzu now
Diffstat (limited to 'ddcprobe/Makefile')
-rw-r--r--ddcprobe/Makefile45
1 files changed, 0 insertions, 45 deletions
diff --git a/ddcprobe/Makefile b/ddcprobe/Makefile
deleted file mode 100644
index 5c3cd133f..000000000
--- a/ddcprobe/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-CFLAGS=-Wall -O2 -g# -DDEBUG
-
-TARGETS=ddcprobe svgamodes ddcxinfo modetest libvbe.a
-
-ifeq (.depend,$(wildcard .depend))
-TARGET=all
-else
-TARGET=depend all
-endif
-
-everything: $(TARGET)
-
-all: $(TARGETS)
-
-install: $(TARGETS)
- cp -a ddcprobe $(DESTDIR)/usr/sbin/ddcprobe
-
-ddcprobe: lrmi.o vesamode.o vbe.o ddcprobe.o
-
-svgamodes: lrmi.o vesamode.o vbe.o svgamodes.o
-
-ddcxinfo: lrmi.o vesamode.o vbe.o ddcxinfo.o
-
-modetest: lrmi.o vesamode.o vbe.o modetest.o
-
-libvbe.a: lrmi.o vesamode.o vbe.o
- $(AR) cru $@ $^
-
-install-lib: $(prefix)/include/vbe.h $(prefix)/lib/libvbe.a
-
-$(prefix)/include/vbe.h:
- install -m 644 vbe.h $(prefix)/include/vbe.h
-
-$(prefix)/lib/libvbe.a:
- install -m 644 libvbe.a $(prefix)/lib/libvbe.a
-
-clean:
- $(RM) $(TARGETS) *.o .depend core
-
-depend:
- $(CPP) -M $(CFLAGS) *.c > .depend
-
-ifeq (.depend,$(wildcard .depend))
-include .depend
-endif