363d1bb20f
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.
18 linhas
335 B
Makefile
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
|