diff --git a/Makefile b/Makefile index 20cfd8a..a940b48 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,6 @@ HDRS= descriptor.h \ OBJS= $(SRCS:.c=.o) CC=gcc #CC=mipsel-linux-gcc -PLATFORM=$(shell uname -s | cut -d- -f1) -PROCESSOR=$(shell uname -p) CFLAGS=-g INCS= LIBS= diff --git a/channel.c b/channel.c index d31ef26..e0a77db 100644 --- a/channel.c +++ b/channel.c @@ -1,3 +1,8 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ + #include #include #include diff --git a/descriptor.c b/descriptor.c index 614072f..c53004e 100644 --- a/descriptor.c +++ b/descriptor.c @@ -1,3 +1,8 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ + #include #include #include diff --git a/descriptor.h b/descriptor.h index ecbb44e..8d36fa5 100644 --- a/descriptor.h +++ b/descriptor.h @@ -1,3 +1,8 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ + #define DS_LINKAGE 74 #define DS_SHORT_EVENT 77 #define DS_COMPONENT 80 diff --git a/epg.c b/epg.c index a358d7b..41b62b0 100644 --- a/epg.c +++ b/epg.c @@ -1,3 +1,8 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ + #include #include #include diff --git a/epg.h b/epg.h index 226a129..7cc637b 100644 --- a/epg.h +++ b/epg.h @@ -1,3 +1,7 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ #include diff --git a/file.c b/file.c index f36ff07..f83bb5b 100644 --- a/file.c +++ b/file.c @@ -1,3 +1,8 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ + #include #include #include diff --git a/huffman.c b/huffman.c index 4a0674e..951df2e 100644 --- a/huffman.c +++ b/huffman.c @@ -11,7 +11,6 @@ * https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html */ - #include #include #include diff --git a/lint.h b/lint.h index f1b2593..9732cd5 100644 --- a/lint.h +++ b/lint.h @@ -1,3 +1,7 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ #include "epg.h" #include "descriptor.h" diff --git a/util.c b/util.c index 20e56fb..3c899e6 100644 --- a/util.c +++ b/util.c @@ -1,3 +1,7 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ #include #include diff --git a/util.h b/util.h index afae7fb..0fe6b2f 100644 --- a/util.h +++ b/util.h @@ -1,3 +1,7 @@ +/* + * Humax EPG Tool + * by af123, 2011 + */ /* Works for modern dates, 1970 - 2038 */ #define MJD_TO_UNIX(xx) (((xx) - 40587) * 86400)