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
261 B
Makefile
18 linhas
261 B
Makefile
|
|
PROJECT_ROOT = ../../..
|
|
PROJECT_NAME = hphp_cpp_eval
|
|
|
|
SYSTEM=$(PROJECT_ROOT)/src/system
|
|
|
|
AUTO_SOURCES_RECURSIVE = 1
|
|
|
|
include $(PROJECT_ROOT)/src/rules.mk
|
|
|
|
ifdef MAC_OS_X
|
|
TARGETS = $(STATIC_LIB)
|
|
else
|
|
TARGETS = $(STATIC_LIB) $(SHARED_LIB)
|
|
endif
|
|
|
|
all: $(TARGETS)
|