# Makefile for signalling test programs
CC = gcc
CCFLAGS = 
INC_DIRS =

SOURCE = asread.c aswrite.c
OBJS = asread.o aswrite.o


.SUFFIXES: .c


all: $(OBJS)
	$(CC) -o asread asread.o
	$(CC) -o aswrite aswrite.o -latm


.c.o:
	$(CC) -c $(CCFLAGS) $(INC_DIRS) $<

clean:
	rm -rf asread aswrite *~ *.o
