Mercurial > hg > xemacs-beta
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/example/Makefile.in Mon Aug 13 10:25:37 2007 +0200 @@ -0,0 +1,35 @@ +# NOTE!! +# The use of BLDDIR here is _BOGUS_. +# What really needs to happen is that we should install config.h into +# the architecture dependent directory when we really hash all this +# out. + +blddir=@blddir@ +dll_cflags=@dll_cflags@ +dll_oflags=@dll_oflags@ +dll_lflags=@dll_lflags@ +dll_ld=@dll_ld@ +INCLUDES=-I$(blddir)/src +CFLAGS=@CFLAGS@ $(INCLUDES) +CC=@CC@ +RM=@RM@ + +TARGET=purified +all: $(TARGET).ell + +.PHONY: clean mostlyclean distclean realclean install + +$(TARGET).ell: $(TARGET).o + $(dll_ld) $(dll_oflags) $@ $(dll_lflags) $^ + +install: + echo "Don't know how to install yet" + +clean mostlyclean: + $(RM) *.o $(TARGET).ell + +distclean: clean + $(RM) Makefile + +realclean extraclean: distclean + $(RM) *~ \#*