summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a89b79c..0000000
--- a/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-CROSS_COMPILE ?=
-KDIR ?=
-
-KINC := -I$(KDIR)/usr/include
-CC := $(CROSS_COMPILE)gcc
-
-CFLAGS += -O2 -Wall -fpic -I. $(KINC)
-OBJS = media.o main.o options.o subdev.o
-
-all: media-ctl
-
-media-ctl: $(OBJS)
- $(CC) $(CFLAGS) -o media-ctl $(OBJS)
- $(CROSS_COMPILE)strip media-ctl
-clean:
- rm -f $(OBJS) media-ctl
-
-.PHONY: clean all