diff options
author | marha <marha@users.sourceforge.net> | 2010-11-19 15:19:19 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-11-19 15:19:19 +0000 |
commit | d12ad2fa1165573df95c857ce59f582f964b7cee (patch) | |
tree | 8d5546283940c928290a23c50748b3f5c431ef06 /tools/bison++/Makefile | |
parent | bd5413c3a7e500fa8c8ccd68a33d2fcc4c172e28 (diff) | |
parent | 12f606ce06ef926f366a03079c5e3107c23f18af (diff) | |
download | vcxsrv-d12ad2fa1165573df95c857ce59f582f964b7cee.tar.gz vcxsrv-d12ad2fa1165573df95c857ce59f582f964b7cee.tar.bz2 vcxsrv-d12ad2fa1165573df95c857ce59f582f964b7cee.zip |
svn merge ^/branches/released .
Diffstat (limited to 'tools/bison++/Makefile')
-rw-r--r-- | tools/bison++/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/bison++/Makefile b/tools/bison++/Makefile new file mode 100644 index 000000000..7538b76a1 --- /dev/null +++ b/tools/bison++/Makefile @@ -0,0 +1,33 @@ +TTYAPP = bison++ + +CSRCS = closure.cc \ + derives.cc \ + getargs.cc \ + getopt1.cc \ + lalr.cc \ + lr0.cc \ + nullable.cc \ + print.cc \ + reduce.cc \ + version.cc \ + warshall.cc \ + allocate.cc \ + conflict.cc \ + files.cc \ + getopt.cc \ + gram.cc \ + lex.cc \ + main.cc \ + output.cc \ + reader.cc \ + symtab.cc\ + old.c + +PFILE = bison.cc +PFILE1 = bison.hairy +HFILE = bison.h + +DEFINES += HAVE_STDLIB_H HAVE_STRING_H XPFILE="""$(PFILE)""" XHFILE="""$(HFILE)""" XPFILE1="""$(PFILE1)""" + +CCFLAGS := $(subst -MD,-MT,$(CCFLAGS)) # to have static linking + |