Skip to content

Commit

Permalink
Replaced remaining := with ?= to allow CLI parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
varuld committed May 12, 2022
1 parent 06d0323 commit 5204343
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
CC ?= gcc
CFLAGS_BENCH := -std=gnu99 -O3
LFLAGS_BENCH := -lpng
CFLAGS_CONV := -std=c99 -O3
CFLAGS_BENCH ?= -std=gnu99 -O3
LFLAGS_BENCH ?= -lpng
CFLAGS_CONV ?= -std=c99 -O3

TARGET_BENCH := qoibench
TARGET_CONV := qoiconv
TARGET_BENCH ?= qoibench
TARGET_CONV ?= qoiconv

all: $(TARGET_BENCH) $(TARGET_CONV)

Expand Down

0 comments on commit 5204343

Please sign in to comment.