Skip to content

Commit 6d23716

Browse files
authored
build: install depends on built programs
We can't make install unless the programs have been built. Thus declare a dependency on the all target from install target.
1 parent 7850a13 commit 6d23716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ icc-brightness-gen: icc-brightness-gen.c
88
clean:
99
rm -f icc-brightness-gen
1010

11-
install:
11+
install: all
1212
mkdir -p $(DESTDIR)$(BIN_PATH)
1313
cp icc-brightness-gen $(DESTDIR)$(BIN_PATH)
1414
cp icc-brightness $(DESTDIR)$(BIN_PATH)

0 commit comments

Comments
 (0)