#
# Makefile, for sulfur15CH intro (6 at fiasko 99 demo party)
# you need Hermes a OpenPTC libs correctly installed in your Linux
# you need Midas libs and inc files in ./ 
# /usr/local/lib is a standard search path for your 
# compiler. 
#
# Also, /usr/local/bin or whereever you installed ptc-config has to be in
# your path
#
# thanks Sahara Surfers for Midas and Gaffer for OpenPTC

OBJECTS = eff.o eff1.o eff2.o eff3.o eff4.o main.o libmidas.a

CC = g++
CFLAGS = -O2 `ptc-config --cflags`

all: introX11

# With dga

introX11: $(OBJECTS)
	$(CC) $(OBJECTS) -lpthread `ptc-config --libs` -o introX11

.cpp.o:
	$(CC) -c $(CFLAGS) $< 

        
