mirror of
https://github.com/postgres/postgres.git
synced 2026-05-22 10:22:10 -04:00
Makefile.port, since they are of no use to configure and much of the library magic happens in Makefile.port anyway. Use __alpha, not __alpha__, since the former is universally available. Remove -DNOFIXADE from the compile command line and put it in the port include file.
9 lines
160 B
Makefile
9 lines
160 B
Makefile
SHELL=/bin/sh5
|
|
AROPT = crs
|
|
|
|
DLSUFFIX = .so
|
|
# "-G 0" works for both DEC cc and GNU cc.
|
|
CFLAGS_SL = -G 0
|
|
|
|
%.so: %.c
|
|
$(CC) -c -G 0 $(CPPFLAGS) $(CFLAGS) -o $@ $<
|