X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=modules%2Fldap%2FMakefile;fp=modules%2Fldap%2FMakefile;h=864cea61f9035b14d76dc6e64ea5f9b2e653aa31;hb=762383636a99307282c2d93d26c35c046ec24da1;hp=6e775ec1db3afc9b7780db7721f789a3b59e0586;hpb=e31bfd1501359ce20fe1caf6b913a019318ec83c;p=chise%2Fxemacs-chise.git.1 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