CFLAGS=-g
LDFLAGS=

TARGET= C1383T01

all: $(TARGET)

test: all
	sh ./C1383.sh
clean:
	rm -f $(TARGET) *.o *.txt
