#
# Makefile for "fct/model" subdir
#

all: test1 test2

test1: zalesak ppm
test2: zalesak ppm

zalesak: zalesak.cpp
	g++ -s -O2 -o zalesak zalesak.cpp

ppm: ppm.c
	gcc -s -O2 -lm -o ppm ppm.c

test1:
	./test1.sh

test2:
	./test2.sh

clean:
	rm -f zalesak ppm ./*/*.out 

### end of Makefile ###