blob: 6bb89b9891cf8316cf69d41aa5db9da6017e226d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $Id$
#
# Makefile for autofs
#
include ../Makefile.conf
include ../Makefile.rules
SRCS = automount.c spawn.c module.c mount.c
OBJS = automount.o spawn.o module.o mount.o
version := $(shell cat ../.version)
CFLAGS += -rdynamic -DAUTOFS_LIB_DIR=\"$(autofslibdir)\" -DVERSION_STRING=\"$(version)\" -I../include
LDFLAGS += -rdynamic
LIBS = -ldl
all: automount
automount: $(OBJS)
$(CC) $(LDFLAGS) -o automount $(OBJS) $(LIBS)
$(STRIP) automount
clean:
rm -f *.o *.s automount
install: all
install -c automount -m 755 $(INSTALLROOT)$(sbindir)
|