--- hatari/src/Makefile 2019/04/01 07:09:16 1.1.1.1 +++ hatari/src/Makefile 2019/04/01 07:09:18 1.1.1.2 @@ -1,7 +1,7 @@ # Makefile for Hatari # Set flags passed to the compiler (e.g. optimization flags) -CMPLRFLAGS = -g -O3 -fomit-frame-pointer +CMPLRFLAGS = -O3 -fomit-frame-pointer # Set the C compiler (e.g. gcc) CC = gcc @@ -20,9 +20,9 @@ CPUOBJS = ./uae-cpu/hatari-glue.o ./uae- ./uae-cpu/cpuemu7.o ./uae-cpu/cpuemu8.o SRCS = audio.c bios.c cart.c configuration.c createBlankImage.c \ - createDiscImage.c debug.c dialog.c disass.c errlog.c fdc.c file.c \ + createDiscImage.c debug.c debugui.c dialog.c disass.c errlog.c fdc.c file.c \ floppy.c gemdos.c ikbd.c int.c intercept.c joy.c keymap.c m68000.c \ - main.c midi.c memAlloc.c memorySnapShot.c mfp.c misc.c msa.c pcx.c psg.c \ + main.c midi.c memAlloc.c memorySnapShot.c mfp.c misc.c msa.c psg.c \ printer.c rs232.c reset.c st.c stMemory.c screen.c screenConvert.c \ screenSnapShot.c shortcut.c sound.c spec512.c statusBar.c timer.c \ tos.c vdi.c video.c view.c wavFormat.c xbios.c ymFormat.c @@ -32,6 +32,7 @@ OBJS = $(SRCS:.c=.o) hatari: $(OBJS) cpu $(CC) $(OBJS) $(CPUOBJS) $(SDLLIB) -o hatari + strip hatari cpu: $(MAKE) -C uae-cpu/ CFLAGS="$(CMPLRFLAGS)" CC="$(CC)" all