265
|
1 # NOTE!!
|
|
2 # The use of BLDDIR here is _BOGUS_.
|
|
3 # What really needs to happen is that we should install config.h into
|
|
4 # the architecture dependent directory when we really hash all this
|
|
5 # out.
|
|
6
|
|
7 blddir=@blddir@
|
|
8 dll_cflags=@dll_cflags@
|
|
9 dll_oflags=@dll_oflags@
|
|
10 dll_lflags=@dll_lflags@
|
|
11 dll_ld=@dll_ld@
|
|
12 INCLUDES=-I$(blddir)/src
|
|
13 CFLAGS=@CFLAGS@ $(INCLUDES)
|
|
14 CC=@CC@
|
|
15 RM=@RM@
|
|
16
|
|
17 TARGET=purified
|
|
18 all: $(TARGET).ell
|
|
19
|
|
20 .PHONY: clean mostlyclean distclean realclean install
|
|
21
|
|
22 $(TARGET).ell: $(TARGET).o
|
|
23 $(dll_ld) $(dll_oflags) $@ $(dll_lflags) $^
|
|
24
|
|
25 install:
|
|
26 echo "Don't know how to install yet"
|
|
27
|
|
28 clean mostlyclean:
|
|
29 $(RM) *.o $(TARGET).ell
|
|
30
|
|
31 distclean: clean
|
|
32 $(RM) Makefile
|
|
33
|
|
34 realclean extraclean: distclean
|
|
35 $(RM) *~ \#*
|