mirror of
https://github.com/pret/pmd-red.git
synced 2026-08-24 01:35:07 -05:00
Include <string.h> in global.h and add dependency scanning
This commit is contained in:
14
Makefile
14
Makefile
@@ -41,6 +41,14 @@ ASM_OBJS := $(ASM_SRCS:%.s=%.o)
|
||||
DATA_ASM_SRCS := $(wildcard data/*.s)
|
||||
DATA_ASM_OBJS := $(DATA_ASM_SRCS:%.s=%.o)
|
||||
|
||||
# Disable dependency scanning when NODEP is used for quick building
|
||||
ifeq ($(NODEP),)
|
||||
src/%.o: C_DEP = $(shell $(SCANINC) -I include src/$(*F).c)
|
||||
asm/%.o: ASM_DEP = $(shell $(SCANINC) asm/$(*F).s)
|
||||
data/%.o: ASM_DEP = $(shell $(SCANINC) data/$(*F).s)
|
||||
endif
|
||||
|
||||
|
||||
OBJS := $(C_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS)
|
||||
|
||||
all: pmd_red.gba
|
||||
@@ -67,16 +75,16 @@ src/agb_flash.o: CFLAGS := -O -mthumb-interwork
|
||||
src/agb_flash_1m.o: CFLAGS := -O -mthumb-interwork
|
||||
src/agb_flash_mx.o: CFLAGS := -O -mthumb-interwork
|
||||
|
||||
$(C_OBJS): %.o : %.c
|
||||
$(C_OBJS): %.o : %.c $$(C_DEP)
|
||||
@$(CPP) $(CPPFLAGS) $< -o $*.i
|
||||
@$(CC1) $(CFLAGS) $*.i -o $*.s
|
||||
@printf ".text\n\t.align\t2, 0\n" >> $*.s
|
||||
$(AS) $(ASFLAGS) -o $@ $*.s
|
||||
|
||||
$(ASM_OBJS): %.o: %.s
|
||||
$(ASM_OBJS): %.o: %.s $$(ASM_DEP)
|
||||
$(AS) $(ASFLAGS) -o $@ $<
|
||||
|
||||
$(DATA_ASM_OBJS): %.o: %.s
|
||||
$(DATA_ASM_OBJS): %.o: %.s $$(ASM_DEP)
|
||||
$(AS) $(ASFLAGS) -o $@ $<
|
||||
|
||||
sym_ewram.ld: sym_ewram.txt
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
#ifndef GUARD_GLOBAL_H
|
||||
#define GUARD_GLOBAL_H
|
||||
|
||||
#include <string.h>
|
||||
#include "gba/gba.h"
|
||||
|
||||
// IDE support
|
||||
#ifdef __APPLE__
|
||||
#if defined(__APPLE__) || defined(__CYGWIN__)
|
||||
#define _(x) x
|
||||
#define __(x) x
|
||||
#define INCBIN_U8 {0}
|
||||
@@ -13,9 +14,6 @@
|
||||
#define INCBIN_S8 {0}
|
||||
#define INCBIN_S16 {0}
|
||||
#define INCBIN_S32 {0}
|
||||
void * memcpy (void *, const void *, size_t);
|
||||
void * memset (void *, int, size_t);
|
||||
int strcmp (const char *, const char *);
|
||||
#endif
|
||||
|
||||
// Prevent cross-jump optimization.
|
||||
@@ -26,14 +24,6 @@ int strcmp (const char *, const char *);
|
||||
|
||||
#define asm_unified(x) asm(".syntax unified\n" x "\n.syntax divided\n")
|
||||
|
||||
#define nonmatching(fndec, x) {\
|
||||
__attribute__((naked))\
|
||||
fndec\
|
||||
{\
|
||||
asm_unified(x);\
|
||||
}\
|
||||
}
|
||||
|
||||
#define ARRAY_COUNT(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
#endif // GUARD_GLOBAL_H
|
||||
|
||||
Reference in New Issue
Block a user