-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
46 lines (31 loc) · 1.01 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
# Makes the interpreter for Autolang Version 2.
# MACROS
CXX = cl.exe
LNK = link.exe
OBJS = Interpreter.obj Auto.obj ExpressionTree.obj Map.obj Set.obj Tuple.obj AbstractMap.obj AbstractSet.obj ProgramVars.obj
OPTIONS = /EHsc /W0
# TARGETS
.PHONY : all
all : auto
auto : $(OBJS)
"$(LNK)" /OUT:auto.exe $(OBJS)
AbstractMap.obj :
"$(CXX)" /c .\Files\Source_Files\AbstractMap.cpp $(OPTIONS)
AbstractSet.obj :
"$(CXX)" /c .\Files\Source_Files\AbstractSet.cpp $(OPTIONS)
Set.obj :
"$(CXX)" /c .\Files\Source_Files\Set.cpp $(OPTIONS)
Tuple.obj :
"$(CXX)" /c .\Files\Source_Files\Tuple.cpp $(OPTIONS)
Map.obj :
"$(CXX)" /c .\Files\Source_Files\Map.cpp $(OPTIONS)
Auto.obj :
"$(CXX)" /c .\Files\Source_Files\Auto.cpp $(OPTIONS)
ProgramVars.obj :
"$(CXX)" /c .\Files\Source_Files\ProgramVars.cpp $(OPTIONS)
ExpressionTree.obj :
"$(CXX)" /c .\Files\Source_Files\ExpressionTree.cpp $(OPTIONS)
Interpreter.obj :
"$(CXX)" /c .\Files\Source_Files\Interpreter.cpp $(OPTIONS)
clean :
del $(OBJS) auto.exe