Skip to content

Commit

Permalink
mk/tests.mk: remove mention of nonexistent files
Browse files Browse the repository at this point in the history
  • Loading branch information
emillon committed Jul 31, 2013
1 parent bd980bc commit 0e2a086
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions mk/tests.mk
Expand Up @@ -216,9 +216,7 @@ ALL_CS := $(wildcard $(S)src/rt/*.cpp \
$(S)src/rt/*/*.cpp \
$(S)src/rt/*/*/*.cpp \
$(S)src/rustllvm/*.cpp)
ALL_CS := $(filter-out $(S)src/rt/bigint/bigint_ext.cpp \
$(S)src/rt/bigint/bigint_int.cpp \
$(S)src/rt/miniz.cpp \
ALL_CS := $(filter-out $(S)src/rt/miniz.cpp \
$(S)src/rt/linenoise/linenoise.c \
$(S)src/rt/linenoise/utf8.c \
,$(ALL_CS))
Expand All @@ -228,12 +226,9 @@ ALL_HS := $(wildcard $(S)src/rt/*.h \
$(S)src/rustllvm/*.h)
ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
$(S)src/rt/vg/memcheck.h \
$(S)src/rt/uthash/uthash.h \
$(S)src/rt/uthash/utlist.h \
$(S)src/rt/msvc/typeof.h \
$(S)src/rt/msvc/stdint.h \
$(S)src/rt/msvc/inttypes.h \
$(S)src/rt/bigint/bigint.h \
$(S)src/rt/linenoise/linenoise.h \
$(S)src/rt/linenoise/utf8.h \
,$(ALL_HS))
Expand Down

1 comment on commit 0e2a086

@brson
Copy link

@brson brson commented on 0e2a086 Jul 31, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+ thanks!

Please sign in to comment.