#
# Makefile for CS 70 Assignment 1, Spring 2003
# 
# You do not need to understand this file to use it.  To build your
# software just type:
#
#     make
#

# ----- Make rules -----

all:	Palindrome.class palindrome

Palindrome.class: Palindrome.java
	javac Palindrome.java

palindrome:	palindrome.cpp
	g++3 -g -pedantic -Wall -W -o palindrome palindrome.cpp


# N.B.  In the rules above, indented lines are indented with a single
# a tab char (ASCII character 8), and not using spaces.  Do not use
# spaces to indent rule actions.
