diff options
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 $@ $^ |