Skip to content

Commit 21fa424

Browse files
committed
stuff
1 parent cab81c8 commit 21fa424

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

tests/harness/makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ include prorab-test.mk
33

44
$(eval $(call prorab-config, ../../config))
55

6-
this_name := harness
6+
this_name := harness$(this_dbg)
77

88
this_soname := 0
99

1010
this_srcs += $(call prorab-src-dir, .)
1111

12-
this_ldlibs += -l papki
13-
this_ldlibs += ../../src/out/$(c)/libcssom$(dot_so)
12+
this_ldlibs += -l papki$(this_dbg)
13+
this_ldlibs += ../../src/out/$(c)/libcssom$(this_dbg)$(dot_so)
1414

1515
this_no_install := true
1616

tests/unit/makefile

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,19 @@ this_name := tests
77

88
this_srcs += $(call prorab-src-dir, .)
99

10-
this_ldlibs += -lharness -lcssom -lpapki -lutki -ltst
11-
this_ldflags += -L$(d)../../src/out/$(c)
12-
this_ldflags += -L$(d)../harness/out/$(c)
10+
this_ldlibs += -l papki$(this_dbg)
11+
this_ldlibs += -l utki$(this_dbg)
12+
this_ldlibs += -l tst
13+
14+
this_ldlibs += ../../src/out/$(c)/libcssom$(this_dbg)$(dot_so)
15+
this_ldlibs += ../harness/out/$(c)/libharness$(this_dbg)$(dot_so)
1316

1417
this_cxxflags += -isystem ../../src
1518

1619
this_no_install := true
1720

1821
$(eval $(prorab-build-app))
1922

20-
# add dependency on libcssom
21-
$(prorab_this_name): $(abspath $(d)../../src/out/$(c)/libcssom$(dot_so))
22-
23-
# add dependency on libharness
24-
$(prorab_this_name): $(abspath $(d)../harness/out/$(c)/libharness$(dot_so))
25-
2623
this_test_cmd := $(prorab_this_name) --junit-out=out/$(c)/junit.xml
2724
this_test_deps := $(prorab_this_name)
2825
this_test_ld_path := ../../src/out/$(c) ../harness/out/$(c)

0 commit comments

Comments
 (0)