aboutsummaryrefslogtreecommitdiff
path: root/c/fd-over-sock/Makefile
blob: 3c353be7522ef393cab063d5ace457914edb58e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
include ../base.mk

all: client server
client: client.c
	$(CC) $(CFLAGS) -o $@ $<
server: server.c
	$(CC) $(CFLAGS) -o $@ $<

clean:
	rm -f client server