CC = gcc
CCDOS = gcc-dos

bin:
	$(CC) -O3 -Wall -o liedetector liedetector.c
all:	bin dos
dos:
	$(CCDOS) -O3 -Wall -o liedetector.exe liedetector.c
