7 lines
235 B
Makefile
7 lines
235 B
Makefile
#Linking rule
|
|
$(TARGET).elf: $(OBJS)
|
|
$(LD) -o $(TARGET).elf $(LDFLAGS_all) $(LDFLAGS) $(OBJS) $(LIBS_all) $(LIBS)
|
|
|
|
#Strips the psexe
|
|
$(TARGET).psexe: $(TARGET).elf
|
|
$(PREFIX)-objcopy $(addprefix -R , $(OVERLAYSECTION)) -O binary $< $@
|