#
# Makefile for CS 70 Assignment 1, Spring 2002
# 
# 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++ -g -pedantic -Wall -W -o palindrome palindrome.cpp


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