kinetic-devel/3rdparty/Makefile

12 lines
306 B
Makefile

# Quick and dirty Makefile to clean out 3rdparty packages prior to distro.
# Will be replaced by proper CMake infrastructure.
SUBDIRS = gtest \
tinyxml \
wxswig \
xmlrpc++
clean:
-$(foreach d, $(SUBDIRS), make -C $(d) clean;)
-$(foreach d, $(SUBDIRS), make -C $(d) wipe;)