SOURCES := $(wildcard *.c)
TARGETS := $(SOURCES:.c=)
export

all: $(TARGETS)
clean:
	rm -f *.exe
checkenv:
	set
