diff modules/base64/Makefile @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents de805c49cfc1
children 11054d720c21
line wrap: on
line diff
--- a/modules/base64/Makefile	Mon Aug 13 11:19:22 2007 +0200
+++ b/modules/base64/Makefile	Mon Aug 13 11:20:41 2007 +0200
@@ -1,4 +1,5 @@
 #
+# 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
@@ -7,8 +8,6 @@
 # 'installed'.
 #
 
-SHELL=/bin/sh
-RM=rm -f
 CC=../../lib-src/ellcc
 CFLAGS=-I. -I../../src
 LD=$(CC) --mode=link
@@ -26,10 +25,8 @@
 
 all: $(MODNAME).ell
 
-distclean: clean
-
 clean:
-	$(RM) $(MODNAME).ell $(OBJS) base64_i.o base64_i.c
+	rm -f $(MODNAME).ell $(OBJS) base64_i.o base64_i.c
 
 $(MODNAME).ell: $(OBJS) base64_i.o
 	$(LD) --mod-output=$@ $(OBJS) base64_i.o