优化了命名

This commit is contained in:
lzy
2024-04-28 13:10:56 +08:00
parent d75a518c0f
commit ba9f2e37a7
155 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# Makefile
## makefile与Makefile的区别
`make`会优先使用`makefile`,发布的项目一般是一个`Makefile`,方便用户写自己的`makefile`
## 参考资料
[跟我一起写Makefile — 跟我一起写Makefile 1.0 文档 (seisman.github.io)](

View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
#include "tool1.h"
#include "tool2.h"
int main()
{
mytool1();
mytool2();
return 0;
}

View File

@@ -0,0 +1,12 @@
OBJS=main.o tool1.o tool2.o
CC=gcc
CFLAGS+=-c -Wall -g
mytool:$(OBJS)
$(CC) $^ -o $@
%.o:%.c
$(CC) $^ $(CFLAGS) -o $@
clean:
$(RM) *.o mytool -r

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "tool1.h"
void mytool1(void)
{
printf("tool1 print\n");
}

View File

@@ -0,0 +1,6 @@
#ifndef TOOL1_H__
#define TOOL1_H__
void mytool1(void);
#endif

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "tool2.h"
void mytool2(void)
{
printf("tool2 print\n");
}

View File

@@ -0,0 +1,6 @@
#ifndef TOOL2_H__
#define TOOL2_H__
void mytool2(void);
#endif