diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5e6c997 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CC_D = gcc -Wall -Wextra -pedantic -g -O0 +CC_R = gcc -Wall -Wextra -pedantic -g -O2 +CC ?= CC_D + +OBJ = + +all: + echo "Make what, mate? (no default target)" >&2 + exit 2 + +clean: + rm -f $(OBJ) |