a little futzing around with sockets while reading through the linux programming interface book

This commit is contained in:
Dan Buch
2011-11-06 09:53:00 -05:00
parent 74dfe433b9
commit ef128a996f
3 changed files with 57 additions and 5 deletions

View File

@@ -4,10 +4,12 @@ RM = rm -v
CC := gcc
CFLAGS := -std=c99 -Wall -g
ALL_TARGETS := $(patsubst %.c,%,$(wildcard *.c))
export CD RM CFLAGS
all:
all: $(ALL_TARGETS)
$(CD) gowrikumar && $(MAKE)
$(CD) gdbtut && $(MAKE)