Changeset bef53a9 in buchla-68k
- Timestamp:
- 07/01/2017 02:39:06 PM (7 years ago)
- Branches:
- master
- Children:
- 283e7a6
- Parents:
- a6f5b95
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
ra6f5b95 rbef53a9 9 9 # the hand-written assembly language code 10 10 11 FLAGS := -Os -m68000 -mshort -Wall -Wextra \ 11 FLAGS := -Os -m68000 -Wall -Wextra 12 13 FLAGS_COM := $(FLAGS) -mshort -std=c99 -ffreestanding \ 14 -fno-strict-aliasing -fno-inline -fno-omit-frame-pointer \ 12 15 -Wpedantic -Wcast-align -Wcast-qual -Wconversion -Wsign-conversion \ 13 16 -Wshadow -Wmissing-declarations -Wredundant-decls \ 14 17 -I include 15 18 16 FLAGS_COM := $(FLAGS) -std=c99 -ffreestanding \ 17 -fno-strict-aliasing -fno-inline -fno-omit-frame-pointer 18 19 FLAGS_ASM := $(FLAGS) 19 FLAGS_ASM := $(FLAGS) -Wa,--register-prefix-optional 20 20 21 21 HEADERS := $(wildcard include/*.h) … … 127 127 128 128 ROM_C := booter.c romp.c 129 ROM_S := bios.s timeint.s129 ROM_S := bios.s lowram.s timeint.s 130 130 131 131 ROM_CO := $(ROM_C:.c=.o) … … 183 183 hatari/c.img: $(wildcard hatari/c/bin/*) $(wildcard hatari/c/work/*) 184 184 rm -f hatari/c.img 185 atari-hd-image 8hatari/c.img BUCHLA hatari/c185 atari-hd-image 16 hatari/c.img BUCHLA hatari/c 186 186 187 187 emu: hatari/c.img 188 188 hatari \ 189 189 --control-socket /tmp/buchla.sock \ 190 --memsize 14 \ 190 191 --vdi-width 1280 --vdi-height 960 \ 191 192 --drive-a false --drive-b false \
Note:
See TracChangeset
for help on using the changeset viewer.