From 42b9898a8a4a07a3134dadce5d24618a0c402fd1 Mon Sep 17 00:00:00 2001 From: horchi Date: Mon, 20 Mar 2017 18:02:17 +0100 Subject: 2017-03-20: version 1.1.113 (horchi)\n -added: Add validity check of the API key for https://www.themoviedb.org (by 3po)\n - change: Removed compiler warnings when using clang\n - added: Added clang++ to Make.config (as optional compiler)\n\n --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a17fa5f..ab0aca0 100644 --- a/Makefile +++ b/Makefile @@ -62,16 +62,16 @@ HTTPOBJS += epgdconfig.o webstore.o webdo.o webauth.o webtools.o httpd.o svdrpcl all: hlib $(TARGET) $(HTTPTARGET) plugins lv eptest: eptest.c episode.c - $(CC) $(CFLAGS) $(DEFINES) eptest.c episode.c svdrpclient.c -L./lib -lhorchi $(DLIBS) -o eptst + $(CC) $(DEFINES) eptest.c episode.c svdrpclient.c -L./lib -lhorchi $(DLIBS) -o eptst hlib: (cd lib && $(MAKE) lib) $(TARGET) : hlib $(OBJS) - $(CC) $(CFLAGS) -rdynamic $(OBJS) $(DLIBS) -o $@ + $(CC) -rdynamic $(OBJS) $(DLIBS) -o $@ $(HTTPTARGET) : hlib $(HTTPOBJS) - $(CC) $(CFLAGS) -rdynamic $(HTTPOBJS) $(HTTPLIBS) -o $@ + $(CC) -rdynamic $(HTTPOBJS) $(HTTPLIBS) -o $@ lv: (cd epglv && $(MAKE)) -- cgit v1.2.3