summaryrefslogtreecommitdiffstats
path: root/util/dvbnet/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/dvbnet/Makefile')
-rw-r--r--util/dvbnet/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/util/dvbnet/Makefile b/util/dvbnet/Makefile
new file mode 100644
index 0000000..187dee2
--- /dev/null
+++ b/util/dvbnet/Makefile
@@ -0,0 +1,29 @@
+
+CC = gcc
+CFLAGS = -g -O2 -MD -Wall -I. -I../../include
+LFLAGS =
+
+OBJS = dvbnet.o
+TARGET = dvbnet
+DESTDIR = /usr/local/bin/
+
+all: version.h $(TARGET)
+
+.c.o:
+ $(CC) $(CFLAGS) -c $< -o $@
+
+$(TARGET): $(OBJS)
+ $(CC) -o $@ $(OBJS) $(LFLAGS)
+
+version.h:
+ printf '#define VERSION_INFO "%s (Build %s)"\n' \
+ "`cat $@.in`" "`date +'%a %b %d %X %Y'`" > $@
+
+install: all
+ install -m 755 $(TARGET) $(DESTDIR)
+
+clean:
+ rm -f $(TARGET) $(OBJS) version.h core* *~ *.d
+
+-include $(wildcard *.d) dummy
+
-04-10Add basic FIFO pluginmichux4-0/+197 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@869 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-04-04fixed autoconfmichux2-0/+3 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@868 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-04-04update autoconfmichux5-2392/+438 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@867 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-04-04Add asterisk plugin, thanks to mcarey@yostengineering.commichux3-1/+197 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@866 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-04-03fix typo, close #114michux1-1/+1 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@865 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-04-03update charset for Crystalfontz Model 632 and 634michux2-3/+87 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@864 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-03-05improve error messagesmichux1-7/+13 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@863 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-03-03reformat plugin_mpd - use c style commentsmichux1-8/+8 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@862 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-03-03correct code format (indent)michux1-2/+2 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@861 3ae390bd-cb1e-0410-b409-cd5a39f66f1f 2008-03-03correct code format (indent)michux5-184/+185 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@860 3ae390bd-cb1e-0410-b409-cd5a39f66f1f