Merge branch 'upstream' into debian
[mech_eap.git] / libeap / src / lib.rules
diff --git a/libeap/src/lib.rules b/libeap/src/lib.rules
deleted file mode 100644 (file)
index 0c79d99..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-ifndef CC
-CC=gcc
-endif
-
-ifndef CFLAGS
-CFLAGS = -MMD -O2 -Wall -g
-endif
-
-CFLAGS += -I.. -I../utils
-
-
-Q=@
-E=echo
-ifeq ($(V), 1)
-Q=
-E=true
-endif
-ifeq ($(QUIET), 1)
-Q=@
-E=true
-endif
-
-%.o: %.c
-       $(Q)$(CC) -c -o $@ $(CFLAGS) $<
-       @$(E) "  CC " $<