summaryrefslogtreecommitdiff
path: root/extras/firmware/Makefile
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-05-28 10:23:32 +0200
committerKay Sievers <kay.sievers@suse.de>2006-05-28 10:23:32 +0200
commit1388c830117d68bb623043d9e1803b34ddade8e5 (patch)
treea330ac0a1d09568fef9a56368feab27280d4129c /extras/firmware/Makefile
parent5005ca5991edb233d3a6bb41ba7d48d5f8a296ab (diff)
replace binary firmware helper with shell script
Diffstat (limited to 'extras/firmware/Makefile')
-rw-r--r--extras/firmware/Makefile17
1 files changed, 3 insertions, 14 deletions
diff --git a/extras/firmware/Makefile b/extras/firmware/Makefile
index a30c0fcd5b..55ba22386f 100644
--- a/extras/firmware/Makefile
+++ b/extras/firmware/Makefile
@@ -1,14 +1,11 @@
# Makefile for udev extra invoked from the udev main Makefile
#
-# Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
+# Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
#
# Released under the GNU General Public License, version 2.
#
-PROG = firmware_helper
-OBJ =
-HEADERS =
-GEN_HEADERS =
+PROG = firmware.sh
MAN_PAGES =
prefix =
@@ -29,14 +26,6 @@ all: $(PROG) $(MAN_PAGES)
.PHONY: all
.DEFAULT: all
-%.o: %.c $(GEN_HEADERS)
- $(E) " CC " $@
- $(Q) $(CC) -c $(CFLAGS) $< -o $@
-
-$(PROG): %: $(HEADERS) %.o $(OBJS)
- $(E) " LD " $@
- $(Q) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIB_OBJS)
-
# man pages
%.8: %.xml
$(E) " XMLTO " $@
@@ -45,7 +34,6 @@ $(PROG): %: $(HEADERS) %.o $(OBJS)
clean:
$(E) " CLEAN "
- $(Q) rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
.PHONY: clean
install-bin: all
@@ -67,3 +55,4 @@ uninstall-man:
install-config:
@echo "no config file to install"
.PHONY: install-config
+