Browse Source

Fixed the DLL creation on windows....

Max Nuding 12 years ago
parent
commit
e76fa5f940
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      CubeControl/makefile

+ 1
- 1
CubeControl/makefile View File

@@ -44,7 +44,7 @@ libSerial.jnilib: serialHelper.c helper/unixSerial.c serialInterface.h
44 44
 
45 45
 Serial.dll: serialHelper.c helper/winSerial.c serialInterface.h
46 46
 	$(CC) -x c -I$(HEADERPATH) -c serialHelper.c -o serialHelper.o -D winHelper
47
-	$(CC) -dynamiclib -o Serial.dll serialHelper.o
47
+	$(CC) -shared -o Serial.dll serialHelper.o
48 48
 	del serialHelper.o
49 49
 
50 50
 doc/index.html: $(JAVAFILES)

Loading…
Cancel
Save