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