Skip to content

Commit

Permalink
Fix example Makefiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhujer committed May 8, 2024
1 parent e0fefb2 commit b207f61
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion share/doc/aceunit/examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ else
subs:=leapyear hello_world_mocked
endif

include ../recurse.mk
include ../../../../recurse.mk
4 changes: 2 additions & 2 deletions share/doc/aceunit/examples/hello_world_mocked/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ACEUNIT_HOME=../../
ACEUNIT_HOME=../../../../../
ACEUNIT:=$(ACEUNIT_HOME)/bin/aceunit
CPPFLAGS:=-W -Wall -pedantic -I../../include -MMD
CPPFLAGS:=-W -Wall -pedantic -I$(ACEUNIT_HOME)include -MMD
ACEUNIT_LIBRARY:=$(ACEUNIT_HOME)/lib/libaceunit-fork.a
ifeq "$(shell uname -s)" "Darwin"
OBJCOPY:=llvm-objcopy
Expand Down
4 changes: 2 additions & 2 deletions share/doc/aceunit/examples/leapyear/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ACEUNIT_HOME=../../
ACEUNIT_HOME=../../../../../
ACEUNIT:=$(ACEUNIT_HOME)/bin/aceunit
CPPFLAGS:=-W -Wall -pedantic -I../../include
CPPFLAGS:=-W -Wall -pedantic -I$(ACEUNIT_HOME)include
ACEUNIT_LIBRARY:=$(ACEUNIT_HOME)/lib/libaceunit-fork.a
#LOADLIBES:=

Expand Down

0 comments on commit b207f61

Please sign in to comment.