aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7c005c9bc0a7dfb1edaaa7aed7f687d8da39fe1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC ?= gcc

.PHONY: all
all: client server

.PHONY: clean
clean:
	rm -rf client server

%.o: %.c
	$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@

client: client.o
	$(CC) -o $@ $<

server: server.o
	$(CC) -o $@ $<