aboutsummaryrefslogtreecommitdiff
path: root/src/config/libobj.in
blob: 7a5fb06ca5c34a5eb20039d7ace1e43711caae6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
### config/libobj.in
#
# Makefile fragment that builds object files for libraries.
#
# The following variables must be set in Makefile.in:
#
# STLIBOBJS	list of .o objects; this must not contain variable
#		references.

.SUFFIXES: .c .so .po
.c.so:
	$(CC) $(DEFS) $(DEFINES) $(PICFLAGS) $(LOCALINCLUDES) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.so.o && \
		$(MV) $*.so.o $*.so
.c.po:
	$(CC) $(DEFS) $(DEFINES) $(PROFFLAGS) $(LOCALINCLUDES) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.po.o && \
		$(MV) $*.po.o $*.po

# rules to generate object file lists

OBJS.ST: $(STLIBOBJS)
	@echo $(STLIBOBJS) > $@

OBJS.SH: $(SHLIBOBJS)
	@echo $(SHLIBOBJS) > $@

OBJS.PF: $(PFLIBOBJS)
	@echo $(PFLIBOBJS) > $@

all-libobjs: $(OBJLISTS)

clean-libobjs:
	$(RM) OBJS.ST OBJS.SH OBJS.PF $(STLIBOBJS) $(SHLIBOBJS) $(PFLIBOBJS)

Makefile: $(SRCTOP)/config/libobj.in
config.status: $(SRCTOP)/config/shlib.conf

# clean-unix:: clean-libobjs
# all-unix:: all-libobjs

###
### end config/libobj.in