X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=modules%2Fldap%2FMakefile;h=864cea61f9035b14d76dc6e64ea5f9b2e653aa31;hb=6421a3ae51bb8072dbf0f73dcd8ef3dab31846b3;hp=e0f1976e676a447ad49cfc5c59ea3690468d392d;hpb=f3ec20f455f3f1212d2c5ee4cadc984330da9c38;p=chise%2Fxemacs-chise.git.1 diff --git a/modules/ldap/Makefile b/modules/ldap/Makefile index e0f1976..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 @@ -25,8 +26,10 @@ MODTITLE="LDAP Client Interface for XEmacs" 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