Skip to content

Commit

Permalink
makefile cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmuth committed Jun 26, 2024
1 parent 48a04b5 commit 35048de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
File renamed without changes.
9 changes: 5 additions & 4 deletions FrontEnd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ QEMU :=

TESTS := $(filter-out $(wildcard TestData/*gen.cw), $(wildcard TestData/*.cw))

LANG_TESTS := $(wildcard LangTest/*.cw)
LANG_TESTS := $(wildcard LangTest/*_test.cw)
LANG_SOURCES := $(wildcard LangTest/*.cw)
LIB_TESTS := $(wildcard Lib/*_test.cw)
LIB_SOURCES := $(filter-out Lib/builtin.cw, $(wildcard Lib/*.cw))
LIB_SOURCES := $(wildcard Lib/*.cw)

TEST_TESTS := \
TestData/binary_tree_test.cw \
Expand All @@ -22,7 +23,7 @@ TESTS_A32 := \
LangTest/defer_test.cw \
LangTest/enum_test.cw \
LangTest/expr_test.cw \
LangTest/linked_list.cw \
LangTest/linked_list_test.cw \
LangTest/sieve_test.cw \
Lib/bitstream_test.cw \
Lib/bytestream_test.cw \
Expand All @@ -31,7 +32,7 @@ TESTS_A32 := \
Lib/string_test.cw \
Lib/trig_test.cw

TESTS_CONCRETE := $(LANG_TESTS) $(TESTS) $(LIB_SOURCES)
TESTS_CONCRETE := $(LANG_SOURCES) $(TESTS) $(LIB_SOURCES)


# not the clean part will be run out of order but the early targets are not
Expand Down

0 comments on commit 35048de

Please sign in to comment.