blob: 84ee664119245018d176dc3a59d6c8726ceff8a1 [file] [log] [blame]
# That an extract of what is in APR.
#
# Compile commands
#VPATH=.:../common
COMPILE = $(CC) $(CFLAGS)
LT_COMPILE = $(LIBTOOL) --mode=compile $(COMPILE) -c $< -o $@
# Implicit rules for creating outputs from input files
.SUFFIXES:
.SUFFIXES: .c .lo .o .slo .s
.c.o:
$(COMPILE) -c $<
.s.o:
$(COMPILE) -c $<
.c.lo:
$(LT_COMPILE)
.s.lo:
$(LT_COMPILE)
.c.slo:
$(SH_COMPILE)