summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2024-05-10 15:09:50 +0200
committerRoland Reichwein <mail@reichwein.it>2024-05-10 15:09:50 +0200
commitbfdb4e9d2cfc7890c5f194e670039fa76c391330 (patch)
tree2584a736ed6f2827c39420882555a154d7b5d570 /Makefile
parent6086ec079a31276c81decdd7b5b5daaafdeb58ca (diff)
Added tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c1d2167..a7c178c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
PROJECTNAME=ymake
-SRC=main.cpp ymake.cpp Builder.cpp ProcessRunner.cpp file.cpp LanguageSettings.cpp MakefileReader.cpp
+SRC=main.cpp ymake.cpp Builder.cpp ProcessRunner.cpp file.cpp LanguageSettings.cpp MakefileReader.cpp env.cpp
OBJ=$(SRC:.cpp=.o)
YSCAN=yscan
-YSCAN_SRC=yscan-main.cpp yscan.cpp file.cpp
+YSCAN_SRC=yscan-main.cpp yscan.cpp file.cpp env.cpp
YSCAN_OBJ=$(YSCAN_SRC:.cpp=.o)
TEST=test-ymake
-TEST_SRC=test-ymake.cpp
+TEST_SRC=test-ymake.cpp file.cpp env.cpp
TEST_OBJ=$(TEST_SRC:.cpp=.o)
all: $(PROJECTNAME) $(YSCAN)