Rename to chsrc-main.c

This commit is contained in:
Aoran Zeng 2024-09-10 19:13:25 +08:00
parent e0fccebf53
commit b14b0578f1
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
# Build File : Makefile
# File Authors : Aoran Zeng <ccmywish@qq.com>
# Created On : <2023-08-28>
# Last Modified : <2024-09-04>
# Last Modified : <2024-09-10>
# ---------------------------------------------------------------
CFLAGS = -Iinclude # -Wall
@ -26,7 +26,7 @@ CI_Build_Name = chsrc
#=======================
all:
@$(CC) src/chsrc.c $(CFLAGS) -o $(Target)
@$(CC) src/chsrc-main.c $(CFLAGS) -o $(Target)
@echo; echo Compile done using \'$(CC)\' $(CFLAGS)
CI: all

View File

@ -1,7 +1,7 @@
/** ------------------------------------------------------------
* SPDX-License-Identifier: GPL-3.0-or-later
* -------------------------------------------------------------
* File Name : chsrc.h
* File Name : chsrc-framework.h
* File Authors : Aoran Zeng <ccmywish@qq.com>
* | Heng Guo <2085471348@qq.com>
* Contributors : Peng Gao <gn3po4g@outlook.com>

View File

@ -24,7 +24,7 @@
#define Chsrc_Maintain_URL "https://github.com/RubyMetric/chsrc"
#define Chsrc_Maintain_URL2 "https://gitee.com/RubyMetric/chsrc"
#include "chsrc.h"
#include "chsrc-framework.h"
#include "recipe/lang/Ruby.c"
#include "recipe/lang/Python.c"