summaryrefslogtreecommitdiffstats
path: root/util/dvbnet/Makefile
blob: 187dee234c324f077a84246fed8f6102e03e0dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
/span> " concatenated."; test-escaped-string = "\"This is\n a test.\""; group1: { x = 5; y = 10; my_array = [ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ]; flag = TRUE; group2: { zzz = "this is a test"; }; states = [ "CT", // Connecticut "CA", // California "TX", // Texas "NV", // Nevada "FL" // Florida ]; }; /* this would cause an error */ // a = "hi!"; }; binary = [ 0xAA, 0xBB, 0xCC ]; list = ( ( "abc", 123, true ), 1.234, ( /* an empty list */ ) ,[ 1, 2, 3 ], { a = (1, 2, true); } ); books = ( "inventory", { title = "Treasure Island"; author = "Robert Louis Stevenson"; price = 29.99; qty = 5; }, { title = "Snow Crash"; author = "Neal Stephenson"; price = 9.99; qty = 8; }, { } ); # miscellaneous stuff misc: { port = 5000; pi = 3.14159265; enabled = FALSE; mask = 0xAABBCCDD; unicode = "STARGΛ̊TE SG-1"; // UTF-8 string bigint = 9223372036854775807L; bighex = 0x1122334455667788L; }; ### eof