aboutsummaryrefslogtreecommitdiff
path: root/makefile.nmake
diff options
context:
space:
mode:
Diffstat (limited to 'makefile.nmake')
-rw-r--r--makefile.nmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/makefile.nmake b/makefile.nmake
new file mode 100644
index 0000000..83ae9a4
--- /dev/null
+++ b/makefile.nmake
@@ -0,0 +1,15 @@
+CFLAGS = /I. /DNOGDI=true /D_CRT_SECURE_NO_WARNINGS /DWIN32_MEAN_AND_LEAN \
+ /W4 /NOLOGO
+
+OBJS = \
+ bufferedmotion.obj \
+ busdevice.obj \
+ devicedeployment.obj \
+ drivers/serial/pcserialport.obj \
+ drivers/tcpip/tcpclient.obj \
+ simplemotion.obj \
+ sm_consts.obj
+
+simplemotionv2.lib: $(OBJS)
+ if exist simplemotionv2.lib del simplemotionv2.lib
+ lib /out:simplemotionv2.lib $(OBJS)