Edouard Dupin
d75f9e97a1
Add mutex and semaphore abstraction Add basic windows gui starting ==> no input ... as bad as a first think use generic makefile add a basic entry point for the zlib
23 lines
439 B
Makefile
23 lines
439 B
Makefile
|
|
|
|
FILE_LIST = \
|
|
etk/Debug.cpp \
|
|
etk/DebugInternal.cpp \
|
|
etk/Memory.cpp \
|
|
etk/unicode.cpp \
|
|
etk/unicodeTable.cpp \
|
|
etk/UString.cpp \
|
|
etk/Stream.cpp \
|
|
etk/File.cpp \
|
|
etk/RegExp.cpp \
|
|
etk/Color.cpp \
|
|
etk/tool.cpp
|
|
|
|
ifeq ("$(TARGET_OS)","Windows")
|
|
FILE_LIST += etk/Mutex.Windows.cpp
|
|
FILE_LIST += etk/Semaphore.Windows.cpp
|
|
else
|
|
FILE_LIST += etk/Mutex.Generic.cpp
|
|
FILE_LIST += etk/Semaphore.Generic.cpp
|
|
endif
|