
CC=gcc
CFLAGS=-std=c99 -Wall -pedantic -W
FILE=conv

out :
	@$(CC) $(CFLAGS) $(FILE).c -o $(FILE).exe
