Mercurial > hg > xemacs-beta
diff modules/base64/Makefile @ 442:abe6d1db359e r21-2-36
Import from CVS: tag r21-2-36
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:35:02 +0200 |
parents | 3ecd8885ac67 |
children | b44930391f7d |
line wrap: on
line diff
--- a/modules/base64/Makefile Mon Aug 13 11:33:40 2007 +0200 +++ b/modules/base64/Makefile Mon Aug 13 11:35:02 2007 +0200 @@ -1,5 +1,4 @@ # -# Sample makefile for a simple Emacs module. # This is slightly more complicated than would normally be the case, # as this makefile has been tailored to work in the Emacs source tree. # For samples of how to compile modules outside of the source tree @@ -8,6 +7,8 @@ # 'installed'. # +SHELL=/bin/sh +RM=rm -f CC=../../lib-src/ellcc CFLAGS=-I. -I../../src LD=$(CC) --mode=link @@ -28,7 +29,7 @@ distclean: clean clean: - rm -f $(MODNAME).ell $(OBJS) base64_i.o base64_i.c + $(RM) $(MODNAME).ell $(OBJS) base64_i.o base64_i.c $(MODNAME).ell: $(OBJS) base64_i.o $(LD) --mod-output=$@ $(OBJS) base64_i.o