summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.ultrix4
blob: 6685b8c0af610be5e1d1d90ad7a7123a3ea701eb (plain)
1
2
3
4
5
6
7
8
9
10
11
# used by initdb
SHELL=/bin/sh5
AROPT = crs

DLSUFFIX = .so
# "-G 0" works for both DEC cc and GNU cc.
CFLAGS_SL = -G 0

# Rule for building a shared library from a single .c file
%.so: %.c
	$(CC) -c -G 0 $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) -o $@ $<