diff options
author | Guangxiong Lin <[email protected]> | 2022-12-01 16:08:38 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-12-01 16:23:11 +0800 |
commit | 122a69f715acfe73963a2347cbb335e41bce944c (patch) | |
tree | c662e60fd13991c786de57110f9303edc0b2d39b /Makefile | |
parent | 5626ba1525179d634676a347b5cd869cc3266090 (diff) | |
download | tinyserver-122a69f715acfe73963a2347cbb335e41bce944c.tar.gz tinyserver-122a69f715acfe73963a2347cbb335e41bce944c.tar.bz2 tinyserver-122a69f715acfe73963a2347cbb335e41bce944c.zip |
Implement echo server with error handling
Implement echo server with error handling
Fix gitignore
Implement an echo server with error handling
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -10,8 +10,8 @@ clean: %.o: %.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@ -client: client.o - $(CC) -o $@ $< +client: client.o common.o + $(CC) -o $@ $^ -server: server.o - $(CC) -o $@ $< +server: server.o common.o + $(CC) -o $@ $^ |