Newer
Older
project / mk / link-exe-rule.mk
Nomura Kei on 24 Apr 2020 340 bytes first commit
# ------------------------------------------------------------------------------
#  実行ファイル 生成ルール
# ------------------------------------------------------------------------------
ifneq ($(strip $(NAME)),)
ifeq  ($(strip $(NAME)),$(strip $(TARGET)))
$(TARGET): $(OBJS)
	$(LINK) $(LDFLAGS) -o $@ $^ $(LIBS)

endif
endif