Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前makefile.am中的代码是这样的:
performancetestsdir = $(prefix)/tests/@PACKAGE@/performance-test performancetests_PROGRAMS = eventwindowperformancetest
我想在构建后以“oldeventwindowperformancetest”的名义制作程序“eventwindowperformancetest”
我应该怎么办?谢谢
几种可能性:
all-local: oldeventwindowperformancetest oldeventwindowperformancetest: eventwindowperformancetest cp "$^" "$@"