diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1 +1,7 @@ -CFLAGS=-Wall -g -O2 +CFLAGS := -Wall -Werror -D_FILE_OFFSET_BITS=64 -g -O2 + +all: bitmap + +.PHONY: clean +clean: + @rm -f bitmap bitmap.o |