]> rtime.felk.cvut.cz Git - lincan.git/blobdiff - lincan/utils/Makefile
The first enhanced version of Linux CAN-bus driver for OCERA project
[lincan.git] / lincan / utils / Makefile
diff --git a/lincan/utils/Makefile b/lincan/utils/Makefile
new file mode 100644 (file)
index 0000000..09ad302
--- /dev/null
@@ -0,0 +1,40 @@
+# Makefile for the Linux CAN-bus driver.
+# Written by Arnaud Westenberg email:arnaud@wanadoo.nl
+# This software is released under the GPL-License.
+# Version 0.7  6 Aug 2001
+#
+# Changes made by Pavel Pisa pisa@cmp.felk.cvut.cz as preliminary
+# study for OCERA Real Time CAN/CANOpen project ORTCAN
+#
+########## The following options can be changed ##########
+
+# Compiler
+CC = gcc
+
+CFLAGS = -I../include -O2
+
+all: default
+
+default: utils
+
+dep:
+       $(CC) $(CFLAGS) $(CPPFLAGS) -w -E -M *.c $(MORE_C_FILES) > .depend
+
+install:
+       echo Nothing to install
+
+utils: rxtx sendburst readburst send can-proxy
+
+rxtx: rxtx.o
+
+sendburst: sendburst.o
+
+readburst: readburst.o
+
+send: send.o
+
+clean :
+       rm -f rxtx sendburst readburst send can-proxy *.o .depend
+
+-include .depend
+