a simple change of the folder of the Makefile

This commit is contained in:
Edouard Dupin 2012-08-15 12:07:28 +02:00
parent 831c2796c1
commit 2fb3842dd0
16 changed files with 14 additions and 2 deletions

View File

@ -38,7 +38,7 @@ ANDROID_BOARD_ID = 14
TARGET_GLOBAL_C_INCLUDES+=-I$(PROJECT_NDK)/platforms/android-$(ANDROID_BOARD_ID)/arch-arm/usr/include
TARGET_GLOBAL_LDLIBS_SHARED = --sysroot=$(PROJECT_NDK)/platforms/android-$(ANDROID_BOARD_ID)/arch-arm
include $(EWOL_FOLDER)/Build/coreLinux/main.mk
include $(EWOL_FOLDER)/Build/core/main.mk
java : all
@mkdir -p libs/armeabi/

View File

@ -1,7 +1,7 @@
USER_PACKAGES += $(EWOL_FOLDER)/Sources/
include $(EWOL_FOLDER)/Build/coreLinux/main.mk
include $(EWOL_FOLDER)/Build/core/main.mk
# http://alp.developpez.com/tutoriels/debian/creer-paquet/

9
Makefile.Windows.mk Normal file
View File

@ -0,0 +1,9 @@
USER_PACKAGES += $(EWOL_FOLDER)/Sources/
# defien the target OS of this system
TARGET_OS=Windows
# define the cross compilateur
CROSS=i586-mingw32msvc-
include $(EWOL_FOLDER)/Build/core/main.mk

View File

@ -53,6 +53,9 @@ ifeq ("$(TARGET_OS)","Windows")
ifeq ("$(STATIC)","1")
TARGET_GLOBAL_LDFLAGS += -Wl,-Bstatic
endif
i586-mingw32msvc-
else ifeq ("$(TARGET_OS)","Android")
TARGET_GLOBAL_CFLAGS += -D__ARM_ARCH_5__ -D__ARM_ARCH_5T__ -D__ARM_ARCH_5E__ -D__ARM_ARCH_5TE__ \
-fpic -ffunction-sections -funwind-tables -fstack-protector \