Update of /cvsroot/enfs/nexus
In directory usw-pr-cvs1:/tmp/cvs-serv14634
Added Files:
Makefile.common
Log Message:
Common targets
--- NEW FILE: Makefile.common ---
#!/usr/bin/make
# $Id: Makefile.common,v 1.1 2001/11/29 12:51:07 tramm Exp $
#
# Common targets and rules for our Makefiles.
#
#
clean:
$(RM) \
*.o \
*.a \
*.so \
$(MODULE) \
$(OBJ) \
$(GENSRC) \
core \
a.out \
# XDR targets
%.h: %.x
$(RPCGEN) -h -o $@ $<
%_clnt.c: %.x %.h
$(RPCGEN) -l -o $@ $<
%_xdr.c: %.x %.h
$(RPCGEN) -c -o $@ $<
%_svc.c: %.x %.h
$(RPCGEN) -m -o $@ $<
# Avoid unused variable warnings when compiling the generated code.
%_xdr.o: %_xdr.c
$(CC) $(CFLAGS) -Wno-unused -c -o $@ $<
|