svn commit: lorikeet r206 - in trunk/ethereal: .

tridge at samba.org tridge at samba.org
Thu Jan 27 03:07:17 GMT 2005


Author: tridge
Date: 2005-01-27 03:07:16 +0000 (Thu, 27 Jan 2005)
New Revision: 206

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=206

Log:
added a simple "make install" target






Modified:
   trunk/ethereal/Makefile


Changeset:
Modified: trunk/ethereal/Makefile
===================================================================
--- trunk/ethereal/Makefile	2005-01-27 03:02:27 UTC (rev 205)
+++ trunk/ethereal/Makefile	2005-01-27 03:07:16 UTC (rev 206)
@@ -1,7 +1,8 @@
+PLUGINS=$(HOME)/.ethereal/plugins
 CC=ccache gcc
-
 GLIB=-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
 
+
 CFLAGS=-DHAVE_CONFIG_H -Iethereal_headers -I. $(GLIB) -D_STANDALONE_ -DINET6 "-D_U_=__attribute__((unused))" -Wall -W -g -O2 -DXTHREADS -pthread -fPIC
 
 OBJS=pidl.o eparser.o talloc.o moduleinfo.o packet-dcerpc-misc.o packet-dcerpc-security.o packet-dcerpc-atsvc.o packet-dcerpc-lsa.o packet-dcerpc-samr.o packet-dcerpc-winreg.o packet-dcerpc-drsuapi.o
@@ -13,5 +14,9 @@
 pidl.so: $(OBJS)
 	 $(CC) -o pidl.so $(LDFLAGS) $(OBJS)
 
+install: pidl.so
+	mkdir -p $(PLUGINS)
+	cp pidl.so $(PLUGINS)
+
 clean:
 	rm -f *.o *.so *~



More information about the samba-cvs mailing list