1 # -*- Mode: Makefile; tab-width: 4; indent-tabs-mode: t -*-
3 # --- Make targets for test echo server.
6 # On my mingw/msys system this Makefile doesn't work so well for
7 # some reason. The following, however, does work:
9 # g++ -l echo-server.o -o echo-server.exe
15 echo-server
: echo-server.c
16 $(CC
) -o
$@
$(CFLAGS
) $<
19 rm -f echo-server echo-server.exe
21 # vim: ft=make ts=4 noet