#
#
#

SRC = main.c smartlinc.c display.c
OBJ = $(SRC:.c=.o)

CFLAGS = -g

driver: $(OBJ)
	$(CC) -o driver $(OBJ)

clean:
	rm -f *.o driver
