Remove makefiles. Use cmake
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
diff --git a/Makefile.vita.dolce b/Makefile.vita.dolce
deleted file mode 100644
index cea5843..0000000
--- a/Makefile.vita.dolce
+++ /dev/null
@@ -1,60 +0,0 @@
-# Based on port by xerpi
-# Makefile to build the SDL library
-
-TARGET_LIB = libSDL2.a
-
-SOURCES = \
- src/*.c \
- src/atomic/*.c \
- src/audio/*.c \
- src/audio/vita/*.c \
- src/cpuinfo/*.c \
- src/events/*.c \
- src/file/*.c \
- src/haptic/*.c \
- src/haptic/dummy/*.c \
- src/joystick/*.c \
- src/joystick/vita/*.c \
- src/loadso/dummy/*.c \
- src/power/*.c \
- src/power/vita/*.c \
- src/filesystem/vita/*.c \
- src/render/*.c \
- src/render/software/*.c \
- src/render/vitagxm/*.c \
- src/render/vitagles2/*.c \
- src/sensor/*.c \
- src/sensor/vita/*.c \
- src/stdlib/*.c \
- src/thread/*.c \
- src/thread/generic/SDL_systls.c \
- src/thread/vita/*.c \
- src/timer/*.c \
- src/timer/vita/*.c \
- src/video/*.c \
- src/video/vita/*.c \
- src/video/yuv2rgb/*.c \
- src/video/arm/*.S \
-
-OBJS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g' | sed -e 's,\.S,\.o,g')
-
-PREFIX = arm-dolce-eabi
-CC = $(PREFIX)-gcc
-AR = $(PREFIX)-ar
-CFLAGS = -g -Wl,-q -Wall -O3 -Iinclude \
- -D__VITA__ -DDOLCEVITA -D__ARM_ARCH=7 -D__ARM_ARCH_7A__ \
- -mfpu=neon -mcpu=cortex-a9 -mfloat-abi=hard
-ASFLAGS = $(CFLAGS)
-
-$(TARGET_LIB): $(OBJS)
- $(AR) rcs $@ $^
-
-clean:
- @rm -f $(TARGET_LIB) $(OBJS)
-
-install: $(TARGET_LIB)
- @mkdir -p "$(DESTDIR)$(DOLCESDK)/arm-dolce-eabi/lib"
- @cp $(TARGET_LIB) $(DESTDIR)$(DOLCESDK)/arm-dolce-eabi/lib
- @mkdir -p "$(DESTDIR)$(DOLCESDK)/arm-dolce-eabi/include/SDL2"
- @cp include/*.h "$(DESTDIR)$(DOLCESDK)/arm-dolce-eabi/include/SDL2"
- @echo "Installed!"
diff --git a/Makefile.vita.vita b/Makefile.vita.vita
deleted file mode 100644
index 0d294d0..0000000
--- a/Makefile.vita.vita
+++ /dev/null
@@ -1,59 +0,0 @@
-# Based on port by xerpi
-# Makefile to build the SDL library
-
-TARGET_LIB = libSDL2.a
-
-SOURCES = \
- src/*.c \
- src/atomic/*.c \
- src/audio/*.c \
- src/audio/vita/*.c \
- src/cpuinfo/*.c \
- src/events/*.c \
- src/file/*.c \
- src/haptic/*.c \
- src/haptic/dummy/*.c \
- src/joystick/*.c \
- src/joystick/vita/*.c \
- src/loadso/dummy/*.c \
- src/power/*.c \
- src/power/vita/*.c \
- src/filesystem/vita/*.c \
- src/render/*.c \
- src/render/software/*.c \
- src/render/vitagxm/*.c \
- src/sensor/*.c \
- src/sensor/vita/*.c \
- src/stdlib/*.c \
- src/thread/*.c \
- src/thread/generic/SDL_systls.c \
- src/thread/vita/*.c \
- src/timer/*.c \
- src/timer/vita/*.c \
- src/video/*.c \
- src/video/vita/*.c \
- src/video/yuv2rgb/*.c \
- src/video/arm/*.S \
-
-OBJS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g' | sed -e 's,\.S,\.o,g')
-
-PREFIX = arm-vita-eabi
-CC = $(PREFIX)-gcc
-AR = $(PREFIX)-ar
-CFLAGS = -g -Wl,-q -Wall -O3 -Iinclude \
- -D__VITA__ -DSCE_OK=0 -D__ARM_ARCH=7 -D__ARM_ARCH_7A__ \
- -mfpu=neon -mcpu=cortex-a9 -mfloat-abi=hard
-ASFLAGS = $(CFLAGS)
-
-$(TARGET_LIB): $(OBJS)
- $(AR) rcs $@ $^
-
-clean:
- @rm -f $(TARGET_LIB) $(OBJS)
-
-install: $(TARGET_LIB)
- @mkdir -p "$(DESTDIR)$(VITASDK)/arm-vita-eabi/lib"
- @cp $(TARGET_LIB) $(DESTDIR)$(VITASDK)/arm-vita-eabi/lib
- @mkdir -p "$(DESTDIR)$(VITASDK)/arm-vita-eabi/include/SDL2"
- @cp include/*.h "$(DESTDIR)$(VITASDK)/arm-vita-eabi/include/SDL2"
- @echo "Installed!"