File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 3
3
# Makefile
4
4
# Makefile for bin/pg_passwd
5
5
# -------------------------------------------------------------------------
6
+
6
7
SRCDIR = ../..
7
8
include ../../Makefile.global
9
+
8
10
OBJS = pg_passwd.o
11
+
9
12
all : pg_passwd
13
+
10
14
pg_passwd : $(OBJS )
11
- $(CC) -o pg_passwd $(OBJS) $(LDFLAGS)
15
+ $(CC ) -o pg_passwd $(OBJS ) $(LDFLAGS )
16
+
12
17
install : pg_passwd
13
- $(INSTALL) $(INSTL_EXE_OPTS) pg_passwd $(DESTDIR)$(BINDIR)/pg_passwd
18
+ $(INSTALL ) $(INSTL_EXE_OPTS ) pg_passwd $(DESTDIR )$(BINDIR ) /pg_passwd
19
+
20
+ .PHONY : submake
21
+ submake :
22
+ $(MAKE ) -C $(LIBPQDIR ) libpq.a
23
+
14
24
depend dep :
15
- $(CC) -MM $(INCLUDE_OPT) *.c >depend
25
+ $(CC ) -MM $(INCLUDE_OPT ) * .c > depend
26
+
16
27
clean :
17
- rm -f pg_passwd $(OBJS)
28
+ rm -f pg_passwd $(OBJS )
29
+
18
30
ifeq (depend,$(wildcard depend) )
19
31
include depend
20
32
endif
You can’t perform that action at this time.
0 commit comments