1@echo off 2 3:: 4:: 5:: 6 7set GETOPT=../../../spinel/ext/getopt 8 9:: 10:: 11:: 12 13set SRC_C=^ 14main.c ^ 15networks_merging.c ^ 16networks_sorting.c ^ 17target_cuda.c ^ 18target_debug.c ^ 19target_glsl.c ^ 20target_opencl.c ^ 21transpose.c ^ 22../../common/util.c ^ 23%GETOPT%/getopt.c 24 25:: 26:: 27:: 28 29cl ^ 30/Fe:hs_gen ^ 31/O2 ^ 32/DNDEBUG ^ 33/I../.. ^ 34/I%GETOPT% ^ 35%SRC_C% 36 37:: 38:: 39:: 40 41del *.obj 42 43:: 44:: 45:: 46