OBJS = $(patsubst %.c, %.o, $(wildcard *.c))
EXE = $(patsubst %.c, %, $(wildcard *.c))

all: $(EXE)

.PHONY: clean
clean:
	rm -rf $(OBJS) $(EXE) *~
