BIN=bin all: dirs command command: command.c gcc -o ${BIN}/command network.c command.c .PHONY: clean dirs clean: rm -rf ${BIN} dirs: mkdir -p ${BIN}