renamed directory

This commit is contained in:
inets 2015-04-14 11:21:46 +02:00
parent ccf0199129
commit cf22f0d466
7 changed files with 0 additions and 7 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -3,18 +3,11 @@ TARGETS = server client echo_server echo_client
CC = gcc
CFLAGS = -g
ifdef DEFINES
CFLAGS += -D$(DEFINES)
endif
all: $(TARGETS) Makefile
clean:
rm -f $(TARGETS)
rm -f *.o *~
server: server.o
client: client.o
# Compile with echo support
echo_server: server.c
$(CC) $(CFLAGS) -DECHO $^ -o $@