Mercurial > hg > xemacs-beta
comparison modules/example/Makefile.in @ 265:8efd647ea9ca r20-5b31
Import from CVS: tag r20-5b31
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:25:37 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
264:682d2a9d41a5 | 265:8efd647ea9ca |
---|---|
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) *~ \#* |