~ubuntu-branches/ubuntu/trusty/rxtx/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#  Copyright 2001 Valentin Pavlov
#
#
#  The library loads but java APIs still need some modifications
#  the native - too.
#
#  A make file for compiling rxtx with lcc contributed by Valentin Pavlov
#  lcc may be downloaded from:  http://www.cs.virginia.edu/~lcc-win32/
#
#  You will need a config.h file in the src directory.  Other builds usually
#  generate them automatically.  The following should work.
#define HAVE_FCNTL_H
#define HAVE_SIGNAL_H
#undef HAVE_SYS_FCNTL_H
#undef HAVE_SYS_FILE_H
#undef HAVE_SYS_SIGNAL_H
#undef HAVE_TERMIOS_H
#undef HAVE_SYS_TIME_H
#  if you know how to create the above in a dos Makefile send in the changes.
#
#  the following commands should then work fine on the command line.
#
#  cd src
#  make -f ..\Makefile.lcc
#
#  You will need to do some programming to get this working.  rxtx has moved
#  to full event support and the win32 code has not been updated to reflect
#  the changes.  There is no windows parallel port code at this time.
#
#  Thur Jan 24 2001  put Comments in the Makefile. taj@www.linux.org.uk.
#                    added javac/javah/jar build rule.

CFLAGS=-I\JDK\INCLUDE -I\jdk\include\win32 -I.
CC=lcc
LINKER=lcclnk
OBJS=init.obj SerialImp.obj termios.obj fuserImp.obj
SRC=init.c SerialImp.c termios.c fuserImp.c
LIBS=
JAVA_HOME=D:\jdk

lib: $(OBJS)
	lcclnk -dll $(OBJS) wsock32.lib -o rxtxSerial.dll

init.obj:  RXTXcomm.jar
	$(CC) $(CFLAGS) init.c

SerialImp.obj: RXTXcomm.jar config.h
	$(CC) $(CFLAGS) SerialImp.c

fuserImp.obj: RXTXcomm.jar config.h
         
termios.obj: RXTXcomm.jar
	$(CC) $(CFLAGS) termios.c

RXTXcomm.jar:
	javac -d . -O *.java
	jar -cf RXTXcomm.jar gnu
	javah -jni gnu.io.RXTXPort gnu.io.RXTXCommDriver

config.h:
	echo please read how to create config.h in the Makefile

install:
	copy rxtxSerial.dll $(JAVA_HOME)\jre\bin
	copy RXTXcomm.jar   $(JAVA_HOME)\jre\lib\ext