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

endif
endif