diff options
| author | Nakidai <nakidai@disroot.org> | 2024-09-25 00:48:29 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-09-25 00:48:48 +0300 |
| commit | a2fa006f2b20d0c1617eb29c87f3df3acbf94987 (patch) | |
| tree | b0f45c5b4bad5ad2f358427d1a16e3fa018ccaaf /Makefile | |
| download | cptc-a2fa006f2b20d0c1617eb29c87f3df3acbf94987.tar.gz cptc-a2fa006f2b20d0c1617eb29c87f3df3acbf94987.zip | |
Add code
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d2ea389 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +OBJS += cptc.o +OBJS += main.o +OBJS += requestHandler.o + +CFLAGS += -std=c11 +RM = rm -f + +all: cptc + +cptc: $(OBJS) + +clean: + $(RM) cptc *.o + +cptc: $(OBJS) |