1
0
Fork 0
forked from len0rd/rockbox

Prevent the user from running "make" directly - it should only be invoked by the buildall.sh script

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16834 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2008-03-27 00:00:53 +00:00
parent 06ec18d93f
commit 61f1735c59
2 changed files with 3 additions and 2 deletions

View file

@ -21,7 +21,8 @@ INCLUDE=-I $(ROOT)/apps/gui \
CFLAGS = -g -D__PCTOOL__ -DDEBUG -DROCKBOX_DIR_LEN=9 -DWPS_DIR=\".\" CFLAGS = -g -D__PCTOOL__ -DDEBUG -DROCKBOX_DIR_LEN=9 -DWPS_DIR=\".\"
all: checkwps.$(MODEL) all:
@echo To build, run the buildall.sh script
checkwps.$(MODEL): checkwps.c $(COMMON) checkwps.$(MODEL): checkwps.c $(COMMON)
@echo CC [$(TARGET)] @echo CC [$(TARGET)]

View file

@ -3,6 +3,6 @@ cat targets.txt | (
while read target model while read target model
do do
rm -f checkwps.$model rm -f checkwps.$model
make MODEL=$model TARGET=$target make MODEL=$model TARGET=$target checkwps.$model
done done
) )