You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
487 B

  1. ## Build multiseed example with Microsoft Visual Studio Express ##
  2. CFLAGS = \
  3. /I. \
  4. /I..\..\src \
  5. /I..\..\w64 \
  6. /DHAVE_CONFIG_H=1 \
  7. /D_CRT_SECURE_NO_WARNINGS=1 \
  8. /nologo \
  9. /W3 \
  10. /O2 \
  11. /Zi
  12. .c.obj:
  13. cl.exe $(CFLAGS) /Fo$*.obj /c $*.c
  14. all: multiseed.exe
  15. multiseed.exe: multiseed.obj ..\..\w64\glpk_4_61.dll
  16. cl.exe $(CFLAGS) /Fmultiseed.exe \
  17. multiseed.obj ..\..\w64\glpk_4_61.lib
  18. check: multiseed.exe
  19. .\multiseed.exe clustering.mod 20
  20. ## eof ##