summaryrefslogtreecommitdiff
path: root/lib/igb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/igb/Makefile')
-rw-r--r--lib/igb/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/igb/Makefile b/lib/igb/Makefile
deleted file mode 100644
index 8a0c4151..00000000
--- a/lib/igb/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-OBJS=igb
-INCL=e1000_82575.h e1000_defines.h e1000_hw.h e1000_osdep.h e1000_regs.h igb.h
-AVBLIB=libigb.a
-#CFLAGS=-ggdb
-
-CC?=gcc
-RANLIB?=ranlib
-
-all: $(AVBLIB)
-
-$(AVBLIB): $(addsuffix .o,$(OBJS))
- $(RM) $@
- $(AR) rcs $@ $^
- $(RANLIB) $@
-
-igb.o: igb.c $(INCL)
- $(CC) -c $(INCFLAGS) $(CFLAGS) igb.c
-
-clean:
- $(RM) `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core -o -name "*.orig"`
-
-