diff libdha/Makefile @ 3973:138800dfbe22

preliminary support of direct hardware access
author nick
date Fri, 04 Jan 2002 10:32:26 +0000
parents
children 922241968c63
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libdha/Makefile	Fri Jan 04 10:32:26 2002 +0000
@@ -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