forked from TurboGit/hubicfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
72 lines (57 loc) · 1.51 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.SUFFIXES:
.SUFFIXES: .c .o
CC = @CC@
CFLAGS = @CFLAGS@ @XML_CFLAGS@ @CURL_CFLAGS@ @FUSE_CFLAGS@ @OPENSSL_CFLAGS@ @JSON_CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@ @XML_LIBS@ @CURL_LIBS@ @FUSE_LIBS@ @OPENSSL_LIBS@ @JSON_LIBS@ -lmagic
INSTALL = @INSTALL@
MKDIR_P = @MKDIR_P@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = $(DESTDIR)$(exec_prefix)/bin
SOURCES=cloudfsapi.c cloudfuse.c commonfs.c
HEADERS=cloudfsapi.h commonfs.h
all: hubicfuse
install: all $(bindir)
$(INSTALL) hubicfuse $(bindir)/hubicfuse
uninstall:
/bin/rm -f $(bindir)/hubicfuse
$(bindir):
$(MKDIR_P) $(bindir)
hubicfuse: $(SOURCES) $(HEADERS)
$(CC) $(CFLAGS) -o hubicfuse $(SOURCES) $(LIBS) $(LDFLAGS)
clean:
/bin/rm -fr hubicfuse *.orig config.h *~ aclocal.m4 autom4te.cache
distclean: clean
/bin/rm -f Makefile config.h config.status config.cache config.log \
marklib.dvi
mostlyclean: clean
maintainer-clean: clean
debug: CFLAGS += -g
debug: hubicfuse
config.h.in: stamp-h.in
stamp-h.in: configure.in
autoheader
echo timestamp > stamp-h.in
config.h: stamp-h
stamp-h: config.h.in config.status
./config.status
Makefile: Makefile.in config.status
./config.status
config.status: configure
./config.status --recheck
reformat:
astyle --style=allman \
--convert-tabs \
--indent=spaces=2 \
--lineend=linux \
--max-code-length=79 \
--pad-oper \
--pad-header \
--align-pointer=type \
--align-reference=name \
--break-closing-brackets \
--min-conditional-indent=0 \
--remove-brackets \
--remove-comment-prefix \
*.c *.h