diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-03-03 14:49:07 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-03-03 14:58:34 +1100 |
commit | e8a17feba95eef424303fb94441008f6c5347aaf (patch) | |
tree | 5a75000535b116f1aa0a0a9a930b4050807fe641 | |
parent | de1920d743d295f50e6905e5957c4172c038e8eb (diff) |
Flatten and alphabetize object file lists.
This will make maintenance and changes easier. "no objection" tim@
-rw-r--r-- | openbsd-compat/Makefile.in | 78 |
1 files changed, 75 insertions, 3 deletions
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in index 71fcdb127..93e8da720 100644 --- a/openbsd-compat/Makefile.in +++ b/openbsd-compat/Makefile.in | |||
@@ -14,11 +14,83 @@ RANLIB=@RANLIB@ | |||
14 | INSTALL=@INSTALL@ | 14 | INSTALL=@INSTALL@ |
15 | LDFLAGS=-L. @LDFLAGS@ | 15 | LDFLAGS=-L. @LDFLAGS@ |
16 | 16 | ||
17 | OPENBSD=base64.o basename.o bcrypt_pbkdf.o bindresvport.o blowfish.o daemon.o dirname.o fmt_scaled.o getcwd.o getgrouplist.o getopt_long.o getrrsetbyname.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o pwcache.o readpassphrase.o reallocarray.o realpath.o recallocarray.o rresvport.o setenv.o setproctitle.o sha1.o sha2.o rmd160.o md5.o sigact.o strcasestr.o strlcat.o strlcpy.o strmode.o strnlen.o strptime.o strsep.o strtonum.o strtoll.o strtoul.o strtoull.o timingsafe_bcmp.o vis.o blowfish.o bcrypt_pbkdf.o explicit_bzero.o freezero.o | 17 | OPENBSD=base64.o \ |
18 | basename.o \ | ||
19 | bcrypt_pbkdf.o \ | ||
20 | bcrypt_pbkdf.o \ | ||
21 | bindresvport.o \ | ||
22 | blowfish.o \ | ||
23 | daemon.o \ | ||
24 | dirname.o \ | ||
25 | explicit_bzero.o \ | ||
26 | fmt_scaled.o \ | ||
27 | freezero.o \ | ||
28 | getcwd.o \ | ||
29 | getgrouplist.o \ | ||
30 | getopt_long.o \ | ||
31 | getrrsetbyname.o \ | ||
32 | glob.o \ | ||
33 | inet_aton.o \ | ||
34 | inet_ntoa.o \ | ||
35 | inet_ntop.o \ | ||
36 | md5.o \ | ||
37 | mktemp.o \ | ||
38 | pwcache.o \ | ||
39 | readpassphrase.o \ | ||
40 | reallocarray.o \ | ||
41 | realpath.o \ | ||
42 | recallocarray.o \ | ||
43 | rmd160.o \ | ||
44 | rresvport.o \ | ||
45 | setenv.o \ | ||
46 | setproctitle.o \ | ||
47 | sha1.o \ | ||
48 | sha2.o \ | ||
49 | sigact.o \ | ||
50 | strcasestr.o \ | ||
51 | strlcat.o \ | ||
52 | strlcpy.o \ | ||
53 | strmode.o \ | ||
54 | strnlen.o \ | ||
55 | strptime.o \ | ||
56 | strsep.o \ | ||
57 | strtoll.o \ | ||
58 | strtonum.o \ | ||
59 | strtoull.o \ | ||
60 | strtoul.o \ | ||
61 | timingsafe_bcmp.o \ | ||
62 | vis.o | ||
18 | 63 | ||
19 | COMPAT=arc4random.o bsd-asprintf.o bsd-closefrom.o bsd-cygwin_util.o bsd-getpeereid.o getrrsetbyname-ldns.o bsd-err.o bsd-flock.o bsd-getpagesize.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-malloc.o bsd-setres_id.o bsd-signal.o bsd-snprintf.o bsd-statvfs.o bsd-waitpid.o fake-rfc2553.o openssl-compat.o xcrypt.o kludge-fd_set.o | 64 | COMPAT= arc4random.o \ |
65 | bsd-asprintf.o \ | ||
66 | bsd-closefrom.o \ | ||
67 | bsd-cygwin_util.o \ | ||
68 | bsd-err.o \ | ||
69 | bsd-flock.o \ | ||
70 | bsd-getpagesize.o \ | ||
71 | bsd-getpeereid.o \ | ||
72 | bsd-malloc.o \ | ||
73 | bsd-misc.o \ | ||
74 | bsd-nextstep.o \ | ||
75 | bsd-openpty.o \ | ||
76 | bsd-poll.o \ | ||
77 | bsd-setres_id.o \ | ||
78 | bsd-signal.o \ | ||
79 | bsd-snprintf.o \ | ||
80 | bsd-statvfs.o \ | ||
81 | bsd-waitpid.o \ | ||
82 | fake-rfc2553.o \ | ||
83 | getrrsetbyname-ldns.o \ | ||
84 | kludge-fd_set.o \ | ||
85 | openssl-compat.o \ | ||
86 | xcrypt.o | ||
20 | 87 | ||
21 | PORTS=port-aix.o port-irix.o port-linux.o port-solaris.o port-net.o port-uw.o | 88 | PORTS= port-aix.o \ |
89 | port-irix.o \ | ||
90 | port-linux.o \ | ||
91 | port-solaris.o \ | ||
92 | port-net.o \ | ||
93 | port-uw.o | ||
22 | 94 | ||
23 | .c.o: | 95 | .c.o: |
24 | $(CC) $(CFLAGS) $(CPPFLAGS) -c $< | 96 | $(CC) $(CFLAGS) $(CPPFLAGS) -c $< |