Don't append epoch to log_filename if no format specifier is given.
[PostgreSQL.git] / src / makefiles / Makefile.bsdi
bloba5a10dbb8ddcc4ddc1fd946bee0e00ee341509f0
1 AROPT = cr
3 # bsdi 4.0 and later is ELF
4 DLSUFFIX = .so
5 ifeq ($(host_os), bsdi2.0)
6 DLSUFFIX = .o
7 endif
8 ifeq ($(host_os), bsdi2.1)
9 DLSUFFIX = .o
10 endif
11 ifeq ($(findstring bsdi3, $(host_os)), bsdi3)
12 DLSUFFIX = .o
13 endif
15 ifeq ($(DLSUFFIX), .so)
16 CFLAGS_SL = -fpic
17 rpath = -Wl,-rpath,'$(rpathdir)'
18 export_dynamic = -Wl,-export-dynamic
19 else
20 CFLAGS_SL =
21 endif
23 %.so: %.o
24         $(CC) $(CFLAGS) -shared -o $@ $<