| 1 | CFLAGS=-O2 -g -fstrict-aliasing -Wall -Wextra -Werror -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wno-unused-parameter -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wformat-nonliteral -Wno-format-zero-length -Wno-format-y2k -Wmissing-format-attribute -Wbad-function-cast -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wdeclaration-after-statement |
| 2 | |
| 3 | all: mbox-helper Makefile |
| 4 | |
| 5 | mbox-helper: mbox-helper.o |
| 6 | |
| 7 | mbox-helper.o: mbox-helper.c |
| 8 | |
| 9 | clean: |
| 10 | -rm *.o |
| 11 | -rm mbox-helper |