diff --git a/src/drivers/human/Makefile b/src/drivers/human/Makefile index 27b288e8..67a1d2d2 100644 --- a/src/drivers/human/Makefile +++ b/src/drivers/human/Makefile @@ -28,13 +28,13 @@ SOURCES = ${ROBOT}.cpp pref.cpp SHIPDIR = drivers/${ROBOT} -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) $(shell find *.rgb -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -type f -print) $(shell find * -maxdepth 0 -name '*.rgb' -type f -print) + +SHIPSUBDIRS = cars CONFIGCREATEDIRS = ${SHIPDIR} -CONFIG = $(shell find *.xml -maxdepth 0 -type f -print) - -SHIPSUBDIRS = cars +CONFIG = $(shell find * -maxdepth 0 -name '*.xml' -type f -print) PKGSUBDIRS = $(SHIPSUBDIRS) diff --git a/src/drivers/human/cars/Makefile b/src/drivers/human/cars/Makefile index 7016059d..b901bc30 100644 --- a/src/drivers/human/cars/Makefile +++ b/src/drivers/human/cars/Makefile @@ -19,6 +19,8 @@ SHIPDIR = drivers/${ROBOT}/cars SHIP = SHIPSUBDIRS = $(shell find * -maxdepth 0 -type d -print) +CONFIGCREATEDIRS = ${SHIPDIR} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car1-trb1/Makefile b/src/drivers/human/cars/car1-trb1/Makefile index d3a1363a..b0a6a25b 100644 --- a/src/drivers/human/cars/car1-trb1/Makefile +++ b/src/drivers/human/cars/car1-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car1-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car2-trb1/Makefile b/src/drivers/human/cars/car2-trb1/Makefile index 8ffa7de7..96ec3c51 100644 --- a/src/drivers/human/cars/car2-trb1/Makefile +++ b/src/drivers/human/cars/car2-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car2-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car3-trb1/Makefile b/src/drivers/human/cars/car3-trb1/Makefile index 98e80b6f..0a8304be 100644 --- a/src/drivers/human/cars/car3-trb1/Makefile +++ b/src/drivers/human/cars/car3-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car3-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car4-trb1/Makefile b/src/drivers/human/cars/car4-trb1/Makefile index 4eb3b300..4af8211b 100644 --- a/src/drivers/human/cars/car4-trb1/Makefile +++ b/src/drivers/human/cars/car4-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car4-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car5-trb1/Makefile b/src/drivers/human/cars/car5-trb1/Makefile index eaf8ed7d..c7a14cc5 100644 --- a/src/drivers/human/cars/car5-trb1/Makefile +++ b/src/drivers/human/cars/car5-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car5-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car6-trb1/Makefile b/src/drivers/human/cars/car6-trb1/Makefile index 62a984b7..91c9cf1d 100644 --- a/src/drivers/human/cars/car6-trb1/Makefile +++ b/src/drivers/human/cars/car6-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car6-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) diff --git a/src/drivers/human/cars/car7-trb1/Makefile b/src/drivers/human/cars/car7-trb1/Makefile index 32f5c874..a48e42d2 100644 --- a/src/drivers/human/cars/car7-trb1/Makefile +++ b/src/drivers/human/cars/car7-trb1/Makefile @@ -15,9 +15,12 @@ ROBOT = human SHIPDIR = drivers/${ROBOT}/cars/car7-trb1 -SHIP = $(shell find *.xml -maxdepth 0 -type f -print) +SHIP = $(shell find * -maxdepth 0 -name '*.xml' -print) SHIPSUBDIRS = +CONFIGCREATEDIRS = ${SHIPDIR} +CONFIG = ${SHIP} + PKGSUBDIRS = ${SHIPSUBDIRS} src-robots-human_PKGFILES = $(shell find * -maxdepth 0 -type f -print) src-robots-human_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd))