Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python

C++


JAVA
PHP
SQL
Assignments

Stack


Makefile

######################################################################
# Makefile for mystack.cpp and stack.cpp
#
######################################################################
CFLAGS= -Wall -O3
CC = g++

######################################################################
# Files that need the "myfile" function
#
mystack: mystack.cpp stack.o stack.h
	$(CC) $(CFLAGS) -o mystack mystack.cpp stack.o

# The following is the stack class file

stack.o: stack.h stack.cpp
	$(CC) -c $(CFLAGS) stack.cpp 
######################################################################