summaryrefslogtreecommitdiffstats
path: root/libdha/Makefile
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-04 10:32:26 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-04 10:32:26 +0000
commitc36e71e5b8de35bb2e741999ad48518928ac0822 (patch)
tree1b75be7617c98fb3477cb6187ceb6592647ebf9a /libdha/Makefile
parent64386b86e471ad1402f01fc0b77a9aecf3f6c908 (diff)
downloadmpv-c36e71e5b8de35bb2e741999ad48518928ac0822.tar.bz2
mpv-c36e71e5b8de35bb2e741999ad48518928ac0822.tar.xz
preliminary support of direct hardware access
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3974 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdha/Makefile')
-rw-r--r--libdha/Makefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/libdha/Makefile b/libdha/Makefile
new file mode 100644
index 0000000000..057fb5ad70
--- /dev/null
+++ b/libdha/Makefile
@@ -0,0 +1,53 @@
+# makefile
+
+include ../config.mak
+
+VERSION = 0.1
+
+SHORTNAME = libdha.so
+LIBNAME = libdha-$(VERSION).so
+
+SRCS=libdha.c pci.c
+OBJS=$(SRCS:.c=.o)
+
+CFLAGS = $(OPTFLAGS) -fPIC -I. -I.. -Wall -W
+
+.SUFFIXES: .c .o
+
+# .PHONY: all clean
+
+.c.o:
+ $(CC) -c $(CFLAGS) -o $@ $<
+
+$(LIBNAME): $(OBJS)
+ $(CC) -shared -o $(LIBNAME) $(OBJS)
+ ln -sf $(LIBNAME) $(SHORTNAME)
+
+all: $(LIBNAME) $(SHORTNAME)
+
+test:
+ $(CC) test.c -o test $(SHORTNAME)
+
+clean:
+ rm -f *.o *.so *~
+
+distclean:
+ rm -f Makefile.bak *.o *.so test *~ .depend
+
+dep: depend
+
+depend:
+ $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+
+install:
+ cp $(LIBNAME) $(prefix)/lib/$(LIBNAME)
+ rm $(prefix)/lib/libdha.so
+ ln -sf $(LIBNAME) $(prefix)/lib/libdha.so
+ ldconfig
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif