Makefile поправил после удаления лишних файлов

This commit is contained in:
Kolan Sh 2011-07-06 10:24:44 +04:00
parent cbc14ba32d
commit 555a361cd0
4 changed files with 7 additions and 24 deletions

View File

@ -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

View File

@ -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=_Сделать

View File

@ -3,9 +3,6 @@
#include <sys/types.h>
#include "tex_parser_table.h"
#include "tex_parser_graphics.h"
#include "zerror.h"
#define TEX_PARSER_DOMAIN 0

View File

@ -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