# Makefile for the demos

CC= gcc
CFLAGS= -Wall -g -I../src -L../ -lcsim

SOURCES= testcsim.c
PROGS= testcsim

all: testcsim

testcsim: testcsim.c ../libcsim.a
	$(CC) -o testcsim testcsim.c $(CFLAGS)

clean: 
	rm -f $(PROGS)

