File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
SRC_DIR := src
2
2
INC_DIR := include
3
3
BUILD_DIR := build
4
- THIRD_PARTY_DIR := third_party
4
+ THIRD_PARTY_DIR := third_party
5
5
6
6
SRC_DIRS := $(shell find $(SRC_DIR ) -type d)
7
7
BUILD_DIRS := $(SRC_DIRS:$(SRC_DIR ) %=$(BUILD_DIR ) % )
8
8
9
9
TARGET := 6502_tester
10
10
SOURCES := $(shell find $(SRC_DIR ) -type f -name '* .cpp')
11
11
HEADERS := $(shell find $(SRC_DIR ) -type f -name '* .h')
12
- OBJECTS := $(SOURCES:$(SRC_DIR ) /%.cpp=$(BUILD_DIR ) /%.o )
12
+ OBJECTS := $(SOURCES:$(SRC_DIR ) /%.cpp=$(BUILD_DIR ) /%.o )
13
13
14
14
ARGS_DIR := $(THIRD_PARTY_DIR ) /args
15
15
ARGS_HEADER := $(ARGS_DIR ) /args.hxx
@@ -18,7 +18,7 @@ JSON_DIR := $(THIRD_PARTY_DIR)/json/single_include
18
18
JSON_HEADER := $(JSON_DIR ) /nlohmann/json.hpp
19
19
20
20
MOS6502_DIR := $(THIRD_PARTY_DIR ) /mos6502
21
- MOS6502_HEADER := $(MOS6502_DIR ) /mos6502.h
21
+ MOS6502_HEADER := $(MOS6502_DIR ) /mos6502.h
22
22
MOS6502_CXX := $(MOS6502_DIR ) /mos6502.cpp
23
23
MOS6502_OBJ := $(MOS6502_DIR ) /mos6502.o
24
24
You can’t perform that action at this time.
0 commit comments