From 55a5acc0eb67f8b0a57d900949bede3c480d42e0 Mon Sep 17 00:00:00 2001 From: ccremers Date: Fri, 15 Dec 2006 14:22:13 +0000 Subject: [PATCH] - Added 'clean' target. --- src/Makefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/Makefile b/src/Makefile index 2b05b14..ac3c4e4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,15 +5,20 @@ # which there is a local copy present. So this is just delegating stuff. # # +SCONS = ./scons.py + all: - ./scons.py all + ${SCONS} all windows: - ./scons.py windows + ${SCONS} windows linux: - ./scons.py linux + ${SCONS} linux tags: - ./scons.py tags + ${SCONS} tags + +clean: + ${SCONS} -c