########################################################################
# makefile f"ur das Programm scalar (einfach)                       MM #
########################################################################

CC = gcc
CFLAGS = -Wall -O -ansi

scalar : scalar.c vec.c vec.h io.c io.h
	$(CC) $(CFLAGS) scalar.c vec.c io.c -o scalar

testein: testein.c io.c io.h
	$(CC) $(CFLAGS) testein.c io.c -o testein

testvec: testvec.c vec.c vec.h io.c io.h
	$(CC) $(CFLAGS) testvec.c vec.c io.c -o testvec

testscal: testscal.c vec.c vec.h io.c io.h
	$(CC) $(CFLAGS) testscal.c vec.c io.c -o testscal

