11 lines
201 B
Makefile
11 lines
201 B
Makefile
AROPT = crs
|
|
DLSUFFIX = .so
|
|
CFLAGS_SL =
|
|
rpath = -rpath '$(rpathdir)'
|
|
|
|
# Rule for building a shared library from a single .o file
|
|
%.so: %.o
|
|
$(LD) -shared -expect_unresolved '*' -o $@ $<
|
|
|
|
sqlmansect = 5
|