summaryrefslogtreecommitdiff
path: root/Makefile
blob: 616f7fcf1692ec807d823501ca0d11242b96efbd (plain)
1
2
3
4
5
6
7
8
9
CFLAGS=-std=gnu99 -ggdb -Wall -Wstrict-prototypes -Wmissing-prototypes -Wunused-result -Wextra -pedantic

all: econproxy econserv econfind

%: %.c util.c util.h econproto.h econpacket.c econpacket.h
	gcc $(CFLAGS) -o $@ $< util.c econpacket.c

clean:
	rm -f econproxy econserv econfind