blob: 3de73ebc010102d02557cf7a26edc9d4f36a48ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# src/makefiles/Makefile.solaris
rpath = -Wl,-rpath,'$(rpathdir)'
ifeq ($(with_gnu_ld), yes)
export_dynamic = -Wl,-E
endif
# Rule for building a shared library from a single .o file
%.so: %.o
$(CC) $(CFLAGS) $< $(LDFLAGS) $(LDFLAGS_SL) -shared -o $@
sqlmansect = 5sql
|