X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=modules%2Fldap%2FMakefile;h=864cea61f9035b14d76dc6e64ea5f9b2e653aa31;hb=a80d1a7517770b6269cf67393a6f269e8ecf9b6c;hp=6e775ec1db3afc9b7780db7721f789a3b59e0586;hpb=ea1ea793fe6e244ef5555ed983423a204101af13;p=chise%2Fxemacs-chise.git diff --git a/modules/ldap/Makefile b/modules/ldap/Makefile index 6e775ec..864cea6 100644 --- a/modules/ldap/Makefile +++ b/modules/ldap/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) eldap_i.o eldap_i.c + $(RM) $(MODNAME).ell $(OBJS) eldap_i.o eldap_i.c $(MODNAME).ell: $(OBJS) eldap_i.o $(LD) --mod-output=$@ $(OBJS) eldap_i.o