From 66b0bd3da5c22a00fcfd290c7d54011156fe6d66 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 19 Dec 2010 00:11:34 -0500 Subject: [PATCH] updated "dist" Makefile target to use cp instead of svn export; added dist to .hgignore --- .hgignore | 1 + Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.hgignore b/.hgignore index d791833..617d884 100644 --- a/.hgignore +++ b/.hgignore @@ -4,3 +4,4 @@ glob:*.o ^anaglym$ ^sdl_keymap.cc$ ^sdl_keymap.h$ +glob:dist diff --git a/Makefile b/Makefile index df31fc0..5cb6fe9 100644 --- a/Makefile +++ b/Makefile @@ -113,8 +113,8 @@ sdl_keymap.cc: gen-sdl-keymap.pl dist: all -rm -rf $@ -mkdir -p $@ - svn export lib $@/lib - svn export doc $@/doc + cp -a lib $@/lib + cp -a doc $@/doc cp $(TARGET) $@ ifeq ($(PLATFORM),PLATFORM_WINDOWS) # copy DLLs to distribution directory