6 lines
91 B
Text
6 lines
91 B
Text
.PHONY: all
|
|
all: $(OBJ)
|
|
|
|
$(OBJ): $(SOURCE)
|
|
@echo "compiling..."
|
|
$(GCC) $(CFLAGS) $< > $@
|