9 lines
237 B
Makefile
9 lines
237 B
Makefile
.PHONY: control-sequence-introducer
|
|
|
|
CC_FLAGS=-Wall -O2
|
|
GCC_BIN=gcc
|
|
|
|
control-sequence-introducer:
|
|
@echo "Building control-sequence-introducer ..."
|
|
@$(GCC_BIN) $(CC_FLAGS) control-sequence-introducer.c -o control-sequence-introducer.ex
|