Revision 3c4779915488bf86af438c543b75ed196f02401f authored by Daniel Lee on 24 October 2013, 18:39:13 UTC, committed by Daniel Lee on 24 October 2013, 18:39:13 UTC
2 parent s e67c42e + 1fb9d1d
Raw File
command
.PRECIOUS: bin/print$(EXE)
bin/print$(EXE) : bin/stan/command/print.o bin/libstan.a
	@mkdir -p $(dir $@)
	$(LINK.c) -O$(O_STANC) $(OUTPUT_OPTION) $< $(LDLIBS)

.PRECIOUS: bin/stanc$(EXE)
bin/stanc$(EXE) : bin/stan/command/stanc.o bin/libstanc.a bin/print$(EXE)
	@mkdir -p $(dir $@)
	$(LINK.c) -O$(O_STANC) $(OUTPUT_OPTION) $< $(LDLIBS_STANC)

##
# Generate dependencies for bin/stanc
##
ifneq (,$(filter-out clean%,$(MAKECMDGOALS)))
  -include bin/stan/command/stanc.d
endif
back to top