-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
executable file
·80 lines (49 loc) · 1.84 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
###############################################################################
# Makefile for My Super Sweet 16-Bit M4lw4r3 MS-DOS Edition
# This Makefile will have targets for using either the nasm or the masm compiler
# Choose appropriately
# Viewer discretion is advised
# Each executable is then disassembled using objdump -D and written
# a file with filename following the format:
# dis_$(EXECUTABLE)_$(OPT_LEVEL).txt
# - where $(EXECUTABLE) is the base name of the executable
#
# all - (default) compile all asm files in directory
# clean - clean up compiled executable files
#
#
#
###############################################################################
COM_EXECUTABLES = sweet.com vga_tetris.com
SOURCE_FILES = sweet.asm vga_tetris.asm
SRC_DIR_VGA_TETRIS = $(addprefix vga_tetris/,vga_tetris.asm)
SRC_DIRS = $(SRC_DIR_VGA_TETRIS)
DST_DIRS = vga_tetris/ sweet/
DST_DIR_VGA_TETRIS = vga_tetris/
NASM = nasm
FLAGS= -f bin
DIS= xxd
DFLAGS= -D
###############################################################################
#
# Compiling .asm files to .com executables
#
###############################################################################
all: $(EXECUTABLES)
###############################################################################
clean:
rm -f sweet.com vga_tetris.com
###############################################################################
all:
$(COM_EXECUTABLES)
sweet.com: sweet.asm
$(NASM) $(FLAGS) -o $@ $^
vga_tetris.com: vga_tetris.asm
$(NASM) $(FLAGS) -o $@ $^
#vga_tetris.com: vga_tetris/vga_tetris.asm
# $(NASM) $(FLAGS) -o $(addprefix $(filter $(<D), $(DST_DIRS)), $@) $^
###############################################################################
echo:
echo "$(SRC_DIRS)"
echo "$(DST_DIRS)"
###############################################################################