Skip to content

Commit

Permalink
Don't run the tests for install (request from package maintainers), o…
Browse files Browse the repository at this point in the history
…nly build the libraries if they weren't built already.
  • Loading branch information
christianhujer committed May 5, 2024
1 parent d5ba2a9 commit e60215d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include recurse.mk
## clean: Remove all generated files.
## lib-all: Build and self-test the AceUnit library.

test-all examples-all install: lib-all
test-all examples-all: lib-all

versions:=c90 c99 c11 c17 c2x gnu90 gnu99 gnu11 gnu17 gnu2x
## compiler-test: Test AceUnit with different versions of C.
Expand Down Expand Up @@ -59,6 +59,9 @@ $(DESTDIR)$(PREFIX)/include/aceunit.mk: include/aceunit.mk
install -d $(dir $@)
sed -e 's#$${PREFIX}#$(PREFIX)#' <$< >$@

lib/%:
$(MAKE) -C lib/ $*

.PHONY: uninstall
## uninstall: Remove AceUnit from the local system (Unix/POSIX/Cygwin/MinGW).
uninstall:
Expand Down

0 comments on commit e60215d

Please sign in to comment.