summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2014-11-03 17:17:42 +1000
committerDave Airlie <airlied@redhat.com>2014-11-03 17:17:42 +1000
commit5128b44bfc3a52e8b25706b61abdb2e97be175f2 (patch)
treed39d21c6a5048de052a7071ed70255f9d03b001a
parent883074434155a88bfecdfb4f5e79e91d167813c4 (diff)
fix Makefile
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2e695d0..3fd0315 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CFLAGS := -g3 -Wall -O2 `pkg-config libusb-1.0 --cflags` `pkg-config openssl --cflags`
LIBS := `pkg-config libusb-1.0 --libs` `pkg-config openssl --libs`
-dl3: dl3.c
- $(CC) $(CFLAGS) -o dl3 dl3.c $(LIBS)
+dl3: dl3.c dl3_hdcp.c
+ $(CC) $(CFLAGS) -o $@ dl3.c dl3_hdcp.c $(LIBS)
all: dl3