X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=modules%2Fbase64%2FMakefile;h=0dde2f38eb66a066a40bd9649e7a5614b3402f66;hb=27515c561fe254c41c0f3b0d2b8854ba1991cf42;hp=406380550885e1b85cafff3f6953670677d28a40;hpb=ea1ea793fe6e244ef5555ed983423a204101af13;p=chise%2Fxemacs-chise.git.1 diff --git a/modules/base64/Makefile b/modules/base64/Makefile index 4063805..0dde2f3 100644 --- a/modules/base64/Makefile +++ b/modules/base64/Makefile @@ -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 @@ all: $(MODNAME).ell 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