From 0ed25c4ecc3befd131eb4ba6130d179cbd49f41e Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 19 Oct 2017 16:15:50 +0200 Subject: [PATCH] Fix build with BSD make This allows building with GNU make or BSD make interchangeably. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df57bed..4c59683 100755 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CFLAGS = -Wall -Wextra -g `pkg-config --cflags libusb-1.0` LDFLAGS = `pkg-config --libs libusb-1.0` rpiboot: main.c - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ main.c uninstall: rm -f /usr/bin/rpiboot