opensc/src/Makefile.mak
Frank Morgner bf828014e5 macOS: Added support for notifications
- adds framework for user defined message strings
- automatically determine the system's language
2017-08-02 19:02:05 +02:00

21 lines
400 B
Makefile

TOPDIR = ..
SUBDIRS = common scconf ui sm pkcs15init \
libopensc pkcs11 tools tests
default: all
!INCLUDE $(TOPDIR)\win32\Make.rules.mak
!IF "$(MINIDRIVER_DEF)" == "/DENABLE_MINIDRIVER"
SUBDIRS = $(SUBDIRS) minidriver
!ENDIF
!IF "$(SM_DEF)" == "/DENABLE_SM"
SUBDIRS = $(SUBDIRS) smm
!ENDIF
all clean::
@for %i in ( $(SUBDIRS) ) do \
@cmd /c "cd %i && $(MAKE) /nologo /f Makefile.mak $@"