automount/makefile

16 lines
303 B
Makefile
Raw Normal View History

CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_DEFAULT_SOURCE
2020-09-24 21:19:21 +02:00
CFLAGS = -Wall -Werror -pedantic -O2 -std=c99
CC = gcc
SRC = automount.c util.c disk.c
OBJ = ${SRC:.c=.o}
2020-09-24 21:19:21 +02:00
all: automount
2020-09-24 21:19:21 +02:00
automount: ${OBJ}
debug: ${OBJ}
2020-09-24 21:19:21 +02:00
${CC} ${LDFLAGS} -O0 -g -o automount_debug $?
clean:
rm -f automount automount_debug *.o