diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-04 23:04:57 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-04 23:04:57 +0000 |
commit | 8076167dfeb68366c26b559aac9b1185e119cea2 (patch) | |
tree | 6fc1d0e2395b1150d99831e146c8012c1397ed16 /Makefile | |
parent | 6c6634cd6d03ccb3ac8004a99ba984a35e207334 (diff) | |
download | vdr-plugin-live-8076167dfeb68366c26b559aac9b1185e119cea2.tar.gz vdr-plugin-live-8076167dfeb68366c26b559aac9b1185e119cea2.tar.bz2 |
Added Makefile for new javascript directory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.21 2007/01/04 15:02:00 lordjaxom Exp $ +# $Id: Makefile,v 1.22 2007/01/04 23:04:57 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -54,14 +54,17 @@ export DEFINES LIBS += httpd/libhttpd.a -SUBDIRS = httpd pages css images pagelib +SUBDIRS = httpd pagelib pages css images javascript ### The object files (add further files here): PLUGINOBJS = $(PLUGIN).o thread.o tntconfig.o setup.o i18n.o timers.o -WEBLIBS = pages/libpages.a css/libcss.a images/libimages.a pagelib/libpagelib.a - +WEBLIBS = \ + pagelib/libpagelib.a \ + pages/libpages.a \ + css/libcss.a \ + images/libimages.a ### Default rules: |