Skip to content

Commit 268048c

Browse files
committed
update Makefile
1 parent 906a420 commit 268048c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
SRC_DIR := src
22
INC_DIR := include
33
BUILD_DIR := build
4-
THIRD_PARTY_DIR := third_party
4+
THIRD_PARTY_DIR := third_party
55

66
SRC_DIRS := $(shell find $(SRC_DIR) -type d)
77
BUILD_DIRS := $(SRC_DIRS:$(SRC_DIR)%=$(BUILD_DIR)%)
88

99
TARGET := 6502_tester
1010
SOURCES := $(shell find $(SRC_DIR) -type f -name '*.cpp')
1111
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)
1313

1414
ARGS_DIR := $(THIRD_PARTY_DIR)/args
1515
ARGS_HEADER := $(ARGS_DIR)/args.hxx
@@ -18,7 +18,7 @@ JSON_DIR := $(THIRD_PARTY_DIR)/json/single_include
1818
JSON_HEADER := $(JSON_DIR)/nlohmann/json.hpp
1919

2020
MOS6502_DIR := $(THIRD_PARTY_DIR)/mos6502
21-
MOS6502_HEADER := $(MOS6502_DIR)/mos6502.h
21+
MOS6502_HEADER := $(MOS6502_DIR)/mos6502.h
2222
MOS6502_CXX := $(MOS6502_DIR)/mos6502.cpp
2323
MOS6502_OBJ := $(MOS6502_DIR)/mos6502.o
2424

0 commit comments

Comments
 (0)