From: Steve Muir Date: Mon, 23 May 2005 19:23:57 +0000 (+0000) Subject: Update from util-python X-Git-Tag: after-util-vserver-0_30_208-revert~187 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=f1c2ee29d18ed4a408440f970669f036d1ae7441;p=util-vserver.git Update from util-python --- diff --git a/python/Makefile b/python/Makefile index 3b8879d..e1b8252 100644 --- a/python/Makefile +++ b/python/Makefile @@ -5,11 +5,11 @@ COMPILE = $(CC) $(CFLAGS) LIBS = -L../lib -lvserver LINK = $(CC) $(LDFLAGS) -PY_MODS := passfdimpl.so +NATIVE_MODS := vserverimpl.so -all: $(PY_MODS) +all: $(NATIVE_MODS) -$(PY_MODS): %.so: %.o +$(NATIVE_MODS): %.so: %.o $(LINK) -shared -o $@ $^ $(LIBS) %.o: %.c