support/fdlibm/Makefile.mingw
author Claus Gittinger <cg@exept.de>
Wed, 26 Jun 2019 22:06:15 +0200
branchcvs_MAIN
changeset 3917 94088b7097d5
parent 3531 a0699eb230de
permissions -rw-r--r--
#OTHER by cg +bracketStrings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3531
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     1
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     2
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     3
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     4
!include ..\..\..\rules\stdHeader_bc
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     5
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     6
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     7
# There are two options in making libm at fdlibm compile time:
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     8
#       _IEEE_LIBM      --- IEEE libm; smaller, and somewhat faster
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
     9
#       _MULTI_LIBM     --- Support multi-standard at runtime by
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    10
#                           imposing wrapper functions defined in
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    11
#                           fdlibm.h:
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    12
#                               _IEEE_MODE      -- IEEE
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    13
#                               _XOPEN_MODE     -- X/OPEN
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    14
#                               _POSIX_MODE     -- POSIX/ANSI
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    15
#                               _SVID3_MODE     -- SVID
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    16
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    17
# Here is how to set up CFLAGS to create the desired libm at
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    18
# compile time:
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    19
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    20
#       CFLAGS = -D_IEEE_LIBM           ... IEEE libm (recommended)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    21
#       CFLAGS = -D_SVID3_MODE  ... Multi-standard supported
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    22
#                                           libm with SVID as the
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    23
#                                           default standard
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    24
#       CFLAGS = -D_XOPEN_MODE  ... Multi-standard supported
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    25
#                                           libm with XOPEN as the
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    26
#                                           default standard
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    27
#       CFLAGS = -D_POSIX_MODE  ... Multi-standard supported
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    28
#                                           libm with POSIX as the
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    29
#                                           default standard
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    30
#       CFLAGS =                        ... Multi-standard supported
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    31
#                                           libm with IEEE as the
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    32
#                                           default standard
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    33
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    34
# NOTE: if scalb's second arguement is an int, then one must
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    35
# define _SCALB_INT in CFLAGS. The default prototype of scalb
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    36
# is double scalb(double, double)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    37
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    38
OUTDIR=
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    39
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    40
INCL=
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    41
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    42
AR      = $(MINGW_DIR)\bin\ar
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    43
CC      = $(MINGW_DIR)\bin\gcc
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    44
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    45
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    46
# Default IEEE libm
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    47
#
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    48
# CFLAGS  = -O $(INCL)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    49
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    50
CHMOD   = chmod
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    51
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    52
CP      = cp
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    53
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    54
INCFILES = fdlibm.h
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    55
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    56
LDFLAGS =
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    57
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    58
LIB     = libfdm.lib
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    59
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    60
LIBS    =
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    61
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    62
RANLIB  = ranlib
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    63
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    64
RM      = del
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    65
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    66
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    67
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    68
src =   k_standard.c k_rem_pio2.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    69
	k_cos.c k_sin.c k_tan.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    70
	e_acos.c e_acosh.c e_asin.c e_atan2.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    71
	e_atanh.c e_cosh.c e_exp.c e_fmod.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    72
	e_gamma.c e_gamma_r.c e_hypot.c e_j0.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    73
	e_j1.c e_jn.c e_lgamma.c e_lgamma_r.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    74
	e_log.c e_log10.c e_pow.c e_rem_pio2.c e_remainder.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    75
	e_scalb.c e_sinh.c e_sqrt.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    76
	w_acos.c w_acosh.c w_asin.c w_atan2.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    77
	w_atanh.c w_cosh.c w_exp.c w_fmod.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    78
	w_gamma.c w_gamma_r.c w_hypot.c w_j0.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    79
	w_j1.c w_jn.c w_lgamma.c w_lgamma_r.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    80
	w_log.c w_log10.c w_pow.c w_remainder.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    81
	w_scalb.c w_sinh.c w_sqrt.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    82
	s_asinh.c s_atan.c s_cbrt.c s_ceil.c s_copysign.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    83
	s_cos.c s_erf.c s_expm1.c s_fabs.c s_finite.c s_floor.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    84
	s_frexp.c s_ilogb.c s_isnan.c s_ldexp.c s_lib_version.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    85
	s_log1p.c s_logb.c s_matherr.c s_modf.c s_nextafter.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    86
	s_rint.c s_scalbn.c s_signgam.c s_significand.c s_sin.c \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    87
	s_tan.c s_tanh.c
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    88
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    89
obj =   $(OUTDIR)k_standard.$(O) $(OUTDIR)k_rem_pio2.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    90
	$(OUTDIR)k_cos.$(O) $(OUTDIR)k_sin.$(O) $(OUTDIR)k_tan.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    91
	$(OUTDIR)e_acos.$(O) $(OUTDIR)e_acosh.$(O) $(OUTDIR)e_asin.$(O) $(OUTDIR)e_atan2.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    92
	$(OUTDIR)e_atanh.$(O) $(OUTDIR)e_cosh.$(O) $(OUTDIR)e_exp.$(O) $(OUTDIR)e_fmod.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    93
	$(OUTDIR)e_gamma.$(O) $(OUTDIR)e_gamma_r.$(O) $(OUTDIR)e_hypot.$(O) $(OUTDIR)e_j0.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    94
	$(OUTDIR)e_j1.$(O) $(OUTDIR)e_jn.$(O) $(OUTDIR)e_lgamma.$(O) $(OUTDIR)e_lgamma_r.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    95
	$(OUTDIR)e_log.$(O) $(OUTDIR)e_log10.$(O) $(OUTDIR)e_pow.$(O) $(OUTDIR)e_rem_pio2.$(O) $(OUTDIR)e_remainder.$(O)  \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    96
	$(OUTDIR)e_scalb.$(O) $(OUTDIR)e_sinh.$(O) $(OUTDIR)e_sqrt.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    97
	$(OUTDIR)w_acos.$(O) $(OUTDIR)w_acosh.$(O) $(OUTDIR)w_asin.$(O) $(OUTDIR)w_atan2.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    98
	$(OUTDIR)w_atanh.$(O) $(OUTDIR)w_cosh.$(O) $(OUTDIR)w_exp.$(O) $(OUTDIR)w_fmod.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
    99
	$(OUTDIR)w_gamma.$(O) $(OUTDIR)w_gamma_r.$(O) $(OUTDIR)w_hypot.$(O) $(OUTDIR)w_j0.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   100
	$(OUTDIR)w_j1.$(O) $(OUTDIR)w_jn.$(O) $(OUTDIR)w_lgamma.$(O) $(OUTDIR)w_lgamma_r.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   101
	$(OUTDIR)w_log.$(O) $(OUTDIR)w_log10.$(O) $(OUTDIR)w_pow.$(O) $(OUTDIR)w_remainder.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   102
	$(OUTDIR)w_scalb.$(O) $(OUTDIR)w_sinh.$(O) $(OUTDIR)w_sqrt.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   103
	$(OUTDIR)s_asinh.$(O) $(OUTDIR)s_atan.$(O) $(OUTDIR)s_cbrt.$(O) $(OUTDIR)s_ceil.$(O) $(OUTDIR)s_copysign.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   104
	$(OUTDIR)s_cos.$(O) $(OUTDIR)s_erf.$(O) $(OUTDIR)s_expm1.$(O) $(OUTDIR)s_fabs.$(O) $(OUTDIR)s_finite.$(O) $(OUTDIR)s_floor.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   105
	$(OUTDIR)s_frexp.$(O) $(OUTDIR)s_ilogb.$(O) $(OUTDIR)s_isnan.$(O) $(OUTDIR)s_ldexp.$(O) $(OUTDIR)s_lib_version.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   106
	$(OUTDIR)s_log1p.$(O) $(OUTDIR)s_logb.$(O) $(OUTDIR)s_matherr.$(O) $(OUTDIR)s_modf.$(O) $(OUTDIR)s_nextafter.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   107
	$(OUTDIR)s_rint.$(O) $(OUTDIR)s_scalbn.$(O) $(OUTDIR)s_signgam.$(O) $(OUTDIR)s_significand.$(O) $(OUTDIR)s_sin.$(O) \
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   108
	$(OUTDIR)s_tan.$(O) $(OUTDIR)s_tanh.$(O)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   109
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   110
all: $(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   111
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   112
check:
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   113
	@echo This package does not have a validation suite.
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   114
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   115
clean:
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   116
	-$(RM) *.$(O) $(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   117
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   118
distclean:      mostlyclean
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   119
	-$(RM) $(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   120
	-$(RM) -r autom4te.cache/
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   121
	-$(RM) config.cache config.log config.status Makefile
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   122
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   123
install:        $(LIB) uninstall
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   124
	$(CP) $(LIB) $(prefix)/lib/$(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   125
	$(CHMOD) 664 $(prefix)/lib/$(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   126
	$(RANLIB) $(prefix)/lib/$(LIB) || true
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   127
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   128
$(LIB) : $(obj)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   129
	-del $(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   130
	$(AR) r $(LIB) $(obj)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   131
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   132
maintainer-clean:       distclean
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   133
	@echo "This command is intended for maintainers to use;"
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   134
	@echo "it deletes files that may require special tools to rebuild."
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   135
	-$(RM) configure
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   136
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   137
mostlyclean:    clean
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   138
	-$(RM) $(obj)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   139
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   140
source: $(src) README
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   141
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   142
uninstall:
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   143
	-$(RM) $(prefix)/lib/$(LIB)
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   144
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   145
.c.$(O):
a0699eb230de Committed on the Free edition of March Hare Software CVSNT Client.
ca
parents:
diff changeset
   146
	$(CC) $(CFLAGS) -c -o $*.$(O) $*.c