Arquivos
hhvm/hphp/tools/Makefile
T
Jordan Delong 363d1bb20f Code move src/ -> hphp/
This change is mostly for FB internal organizational reasons.
Building is not effected beyond the fact that the target now
lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
2013-02-11 02:10:41 -08:00

18 linhas
335 B
Makefile

PROJECT_ROOT = ../..
SOURCE_SUBDIRS = shmw
include $(PROJECT_ROOT)/src/rules.mk
.PHONY: $(SOURCE_SUBDIRS)
$(SOURCE_SUBDIRS):
$(V)for mdir in $(SOURCE_SUBDIRS); do make -C $$mdir; done
all: $(SOURCE_SUBDIRS)
.PHONY: clobber
clobber:
$(V)for mdir in $(SOURCE_SUBDIRS); do make -C $$mdir clobber; done
.PHONY: clean
clean: clobber