Binomial heap #4

Merged
Jef Roosens merged 24 commits from Chewing_Bever/libvieter:min-heap into dev 2023-01-27 22:32:03 +01:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 16b78b8431 - Show all commits

View file

@ -11,6 +11,6 @@ pipeline:
pull: true pull: true
commands: commands:
- make lint - make lint
- make CFLAGS='-Werror' - make objs CFLAGS='-Werror -fsyntax-only'
when: when:
event: [push, pull_request] event: [push, pull_request]

View file

@ -33,6 +33,10 @@ all: vieter
# =====COMPILATION===== # =====COMPILATION=====
# Utility used by the CI to lint
.PHONY: objs
objs: $(OBJS)
.PHONY: vieter .PHONY: vieter
vieter: $(BUILD_DIR)/$(LIB_FILENAME) vieter: $(BUILD_DIR)/$(LIB_FILENAME)
$(BUILD_DIR)/$(LIB_FILENAME): $(OBJS) $(BUILD_DIR)/$(LIB_FILENAME): $(OBJS)