geom_gate userland utility improvements
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.
 
 
 
 

34 lines
675 B

  1. !include "win32/config.mk"
  2. !if "$(WITH_WINCNG)" == "1"
  3. !include "Makefile.WinCNG.inc"
  4. !else
  5. !include "Makefile.OpenSSL.inc"
  6. !endif
  7. !include "Makefile.inc"
  8. OBJECTS=$(CSOURCES:.c=.obj)
  9. # SUBDIRS=src example
  10. SUBDIRS=src
  11. all-sub: win32\objects.mk
  12. -for %D in ($(SUBDIRS)) do $(MAKE) /nologo /f %D/NMakefile BUILD=$(BUILD) SUBDIR=%D all-sub
  13. clean:
  14. -rmdir 2>NUL /s/q $(TARGET)
  15. -del 2>NUL win32\objects.mk
  16. real-clean vclean: clean
  17. -del 2>NUL libssh2.dll
  18. -del 2>NUL libssh2.exp
  19. -del 2>NUL libssh2.ilk
  20. -del 2>NUL libssh2.lib
  21. -del 2>NUL *.pdb
  22. win32\objects.mk: Makefile.inc
  23. @echo OBJECTS = \>$@
  24. @for %O in ($(OBJECTS)) do @echo $$(INTDIR)\%O \>>$@
  25. @echo $$(EOL)>>$@