-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
37 lines (27 loc) · 842 Bytes
/
Makefile.in
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
31
32
33
34
35
36
srcdir=@srcdir@
VPATH=@srcdir@
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
mandir=@mandir@
INSTALLCMD=@INSTALL@
CC=@CC@
CFLAGS=@CFLAGS@ -I.
EXEEXT=@EXEEXT@
OBJS= f90cache.o mdfour.o hash.o execute.o util.o args.o stats.o \
cleanup.o snprintf.o
HEADERS = f90cache.h mdfour.h
all: f90cache$(EXEEXT)
f90cache$(EXEEXT): $(OBJS) $(HEADERS)
$(CC) $(CFLAGS) -o $@ $(OBJS)
install: f90cache$(EXEEXT) f90cache.1
${INSTALLCMD} -d $(DESTDIR)${bindir}
${INSTALLCMD} -m 755 f90cache$(EXEEXT) $(DESTDIR)${bindir}
${INSTALLCMD} -d $(DESTDIR)${mandir}/man1
${INSTALLCMD} -m 644 ${srcdir}/f90cache.1 $(DESTDIR)${mandir}/man1/
strip $(DESTDIR)${bindir}/f90cache$(EXEEXT)
clean:
/bin/rm -f $(OBJS) *~ f90cache$(EXEEXT)
distclean: clean
/bin/rm -f Makefile config.h config.sub config.log build-stamp \
config.status tags