~ubuntu-branches/ubuntu/breezy/antlr/breezy

« back to all changes in this revision

Viewing changes to examples/cpp/exprAST/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-06-29 16:11:22 UTC
  • mfrom: (0.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050629161122-g81crc3z92p5xhsg
Tags: 2.7.5-6ubuntu4
Build depend on java-gcj-compat-dev, depend on java-gcj-compat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
###############################################################################
2
 
# $Id: $
3
 
###############################################################################
4
 
 
5
 
G_FILES := expr.g
6
 
expr_g_FILES := \
7
 
        ExprLexer.cpp  ExprParser.cpp  ExprParserTokenTypes.hpp \
8
 
        ExprLexer.hpp  ExprParser.hpp  ExprParserTokenTypes.txt
9
 
 
10
 
B_NAME := expr
11
 
B_OBJS := Main.o ExprLexer.o ExprParser.o
12
 
 
13
 
C_TARGETS := $(expr_g_FILES)
14
 
 
15
 
ifndef TOPDIR
16
 
TOPDIR  = $(shell pwd)/../../..
17
 
endif
18
 
 
19
 
include $(TOPDIR)/scripts/Config.make
20
 
include $(TOPDIR)/scripts/Rules.make
21
 
 
22
 
# Antlr deps.
23
 
EXTRA_LIBS := $(ANTLR_LIBS)
24
 
EXTRA_CXXFLAGS := $(ANTLR_INCS)
25
 
 
26
 
# DO NOT DELETE
27
 
 
28
 
ExprLexer.o: ExprLexer.hpp ExprParserTokenTypes.hpp
29
 
ExprParser.o: ExprParser.hpp ExprParserTokenTypes.hpp
30
 
Main.o: ExprLexer.hpp ExprParserTokenTypes.hpp ExprParser.hpp