ewol/Sources/libetk/file.mk
Edouard Dupin d75f9e97a1 Build for windows ==> work with wine
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
2012-08-15 20:56:16 +02:00

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