summaryrefslogtreecommitdiff
path: root/Makefile
blob: a863bd4aa5a9cbf540a700b6ebdd872c3c59ae85 (plain)
1
2
3
4
5
6
7
8
9
10
all: econproxy econserv

econproxy: econproxy.c util.c util.h econproto.h
	gcc -ggdb -Wall -o $@ econproxy.c util.c

econserv: econserv.c util.c util.h econproto.h 
	gcc -ggdb -Wall -o $@ $< util.c

clean:
	rm -f econproxy econserv