fix MSVC slash/backslash and other such problems, now getting:

dtd_preparse.obj : error LNK2001: Nichtaufgeloestes externes Symbol _fgetln

MSVC doesn't support fgetln!

svn path=/trunk/; revision=15749
This commit is contained in:
Ulf Lamping 2005-09-10 18:33:32 +00:00
parent c32307b90d
commit 78a5252c83
1 changed files with 4 additions and 4 deletions

View File

@ -155,15 +155,15 @@ sminmpec.c: enterprise-numbers make-sminmpec.pl
$(PERL) make-sminmpec.pl enterprise-numbers sminmpec.c
dtd_parse.c : dtd_parse.l
$(LEX) -odtd_parse.c $(srcdir)/dtd_parse.l
$(LEX) -odtd_parse.c dtd_parse.l
dtd_preparse.c : dtd_preparse.l
$(LEX) -odtd_preparse.c $(srcdir)/dtd_preparse.l
$(LEX) -odtd_preparse.c dtd_preparse.l
dtd_grammar.h: dtd_grammar.c
LEMON=../tools/lemon
LEMON=..\tools\lemon
dtd_grammar.c: dtd_grammar.lemon $(LEMON)\lemon.exe
$(LEMON)/lemon t=$(srcdir)/$(LEMON)/lempar.c dtd_grammar.lemon
$(LEMON)\lemon t=$(LEMON)\lempar.c dtd_grammar.lemon