Changeset a6da9fb in buchla-emu
- Timestamp:
- 07/30/2017 05:33:49 PM (7 years ago)
- Branches:
- master
- Children:
- caff491
- Parents:
- 0726522
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r0726522 ra6da9fb 1 bios.abs 2 midas.abs 3 1 4 build 2 5 buchla 3 bios.abs 6 mkdisk 7 8 buchla.disk -
Makefile
r0726522 ra6da9fb 22 22 -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls \ 23 23 -I cpu -I emu -I build -I $(SDL2_INC) 24 25 FLAGS_AUX := $(FLAGS) -Wall -Wextra \ 26 -Wpedantic -Wconversion -Wsign-conversion -Wshadow \ 27 -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls 24 28 25 29 ifndef WIN … … 68 72 HEADERS := $(wildcard cpu/*.h) $(wildcard emu/*.h) 69 73 70 all: buchla 74 all: buchla buchla.disk 71 75 72 76 build: … … 112 116 $(LIBS) 113 117 118 mkdisk: emu/mkdisk.c 119 $(GCC) $(FLAGS_AUX) -o mkdisk emu/mkdisk.c 120 121 buchla.disk: mkdisk midas.abs 122 ./mkdisk 123 114 124 run: buchla 115 125 ./buchla … … 122 132 rm -rf build 123 133 rm -f buchla 134 rm -f mkdisk 135 rm -f buchla.disk
Note:
See TracChangeset
for help on using the changeset viewer.