automount/makefile

11 lines
187 B
Makefile

CFLAGS = -Wall -Werror -pedantic -O2 -std=c99
CC = gcc
automount: automount.c
debug: automount.c
${CC} ${LDFLAGS} -O0 -g -o automount_debug $?
clean:
rm -f automount automount_debug