Procházet zdrojové kódy

Fix make exiting 1 if test script is missing

master
JustAnotherArchivist před 1 rokem
rodič
revize
dfc809abb4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      .make-and-exec-Makefile

+ 1
- 1
.make-and-exec-Makefile Zobrazit soubor

@@ -1,4 +1,4 @@
.make-and-exec-binaries/%: %.c
mkdir -p .make-and-exec-binaries
$(CC) -O3 -o $@ $< $(CFLAGS)
[ -f ./.$(notdir $(@))-test ] && ./.$(notdir $(@))-test
[ -f ./.$(notdir $(@))-test ] && ./.$(notdir $(@))-test || true

Načítá se…
Zrušit
Uložit