Skip to content

Commit

Permalink
repair
Browse files Browse the repository at this point in the history
  • Loading branch information
melsman committed Jan 10, 2024
1 parent e60125f commit bf613b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ prepare:
.PHONY: test
test: prepare
$(MAKE) -C lib/github.com/diku-dk/sml-tigr/test
$(MAKE) -C ci && (cd ci; ./ci 1)
$(MAKE) -C ci ci && (cd ci; ./ci 1)
$(MAKE) -C sml-examples/hello
$(MAKE) -C sml-examples/flags
$(MAKE) -C sml-examples/mandel
Expand Down
7 changes: 6 additions & 1 deletion ci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ else
endif
endif

ci : ci.c libtigr.so
.PHONY: all
all:
$(MAKE) -C .. prepare
$(MAKE) ci

ci$(EXT): ci.c libtigr.so
$(CC) $< -o $@$(EXT) $(CFLAGS) $(LDFLAGS)

libtigr.so: ../lib/github.com/diku-dk/sml-tigr/clib/libtigr.so
Expand Down

0 comments on commit bf613b1

Please sign in to comment.