Add comments to mygrep, begin implementing the http client

This commit is contained in:
Ivaylo Ivanov
2018-11-03 16:51:24 +01:00
parent 7765c6964a
commit e18af3e94e
6 changed files with 155 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE -D_POSIX_C_SOURCE=200809L -g -c
TARGET = mygrep
all: $(TARGET).c
all: $(TARGET).c
$(CC) $(CFLAGS) $(TARGET).c
$(CC) $(TARGET).o -o $(TARGET)