diff --git a/c/tex_parser/Makefile b/c/tex_parser/Makefile index 3a61f11..28befcb 100644 --- a/c/tex_parser/Makefile +++ b/c/tex_parser/Makefile @@ -78,31 +78,19 @@ clean: KOLAN_PROJECTS=$(HOME)/projects KOLAN_INCLUDE=$(KOLAN_PROJECTS)/include -target_objs = tex_parser_test.o tex_parser.o tex_parser_table.o tex_parser_graphics.o \ +target_objs = tex_parser_test.o tex_parser.o \ zalloc_ext.o zalloc.o xalloc.o zerror.o xerror.o $(TARGET): $(target_objs) $(CC) $(LDFLAGS) -o $@ $(target_objs) tex_parser_test.o: tex_parser_test.c tex_parser.c tex_parser.h tex_parser_const.h \ - tex_parser_table.h tex_parser_graphics.h \ $(KOLAN_INCLUDE)/xerror.h $(KOLAN_INCLUDE)/zerror.h \ $(KOLAN_INCLUDE)/xalloc.h $(KOLAN_INCLUDE)/zalloc.h $(KOLAN_INCLUDE)/zalloc_ext.h tex_parser.o: tex_parser.c tex_parser.h tex_parser_const.h \ - tex_parser_table.h tex_parser_graphics.h \ $(KOLAN_INCLUDE)/xerror.h $(KOLAN_INCLUDE)/zerror.h \ $(KOLAN_INCLUDE)/xalloc.h $(KOLAN_INCLUDE)/zalloc.h $(KOLAN_INCLUDE)/zalloc_ext.h -tex_parser_table.o: tex_parser_table.c tex_parser_table.h tex_parser_const.h \ - $(KOLAN_INCLUDE)/xerror.h $(KOLAN_INCLUDE)/zerror.h \ - $(KOLAN_INCLUDE)/xalloc.h $(KOLAN_INCLUDE)/zalloc.h \ - $(KOLAN_INCLUDE)/zalloc_ext.h - -tex_parser_graphics.o: tex_parser_graphics.c tex_parser_graphics.h tex_parser_const.h \ - $(KOLAN_INCLUDE)/xerror.h $(KOLAN_INCLUDE)/zerror.h \ - $(KOLAN_INCLUDE)/xalloc.h $(KOLAN_INCLUDE)/zalloc.h \ - $(KOLAN_INCLUDE)/zalloc_ext.h - zalloc_ext.o: $(KOLAN_INCLUDE)/zalloc_ext.c $(KOLAN_INCLUDE)/zalloc_ext.h \ $(KOLAN_INCLUDE)/zalloc.h $(KOLAN_INCLUDE)/xerror.h diff --git a/c/tex_parser/tex_parser.geany b/c/tex_parser/tex_parser.geany index 083434a..560b029 100644 --- a/c/tex_parser/tex_parser.geany +++ b/c/tex_parser/tex_parser.geany @@ -16,13 +16,11 @@ long_line_behaviour=1 long_line_column=72 [files] -current_page=3 -FILE_NAME_0=889;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser_test.c;0 -FILE_NAME_1=298;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser.c;0 -FILE_NAME_2=58;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser_table.c;0 -FILE_NAME_3=299;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser_table.h;0 -FILE_NAME_4=1619;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser.h;0 -FILE_NAME_5=579;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser_tags.h;0 +current_page=2 +FILE_NAME_0=1189;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser_test.c;0 +FILE_NAME_1=4487;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser.c;0 +FILE_NAME_2=795;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser.h;0 +FILE_NAME_3=575;C;0;16;1;1;1;/home/kolan/dev/c/tex_parser/tex_parser_tags.h;0 [build-menu] NF_00_LB=_Сделать diff --git a/c/tex_parser/tex_parser.h b/c/tex_parser/tex_parser.h index 8f8d6d8..60c8eb8 100644 --- a/c/tex_parser/tex_parser.h +++ b/c/tex_parser/tex_parser.h @@ -3,9 +3,6 @@ #include -#include "tex_parser_table.h" -#include "tex_parser_graphics.h" - #include "zerror.h" #define TEX_PARSER_DOMAIN 0 diff --git a/c/tex_parser/tex_parser_tags.h b/c/tex_parser/tex_parser_tags.h index 31c5521..2f9124b 100644 --- a/c/tex_parser/tex_parser_tags.h +++ b/c/tex_parser/tex_parser_tags.h @@ -13,6 +13,6 @@ #define TEX_TAG_TABULARNEWLINE "tabularnewline" #define TEX_TAG_INCLUDEGRAPHICS "includegraphics" -#define TEX_PARAM_TABLE "longtable" +#define TEX_PARAM_TABLE "longtable" #endif