From b5e58fa40886628a14a429e728c62c4c3cdb644f Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Wed, 21 Oct 2020 13:24:57 +0000 Subject: [PATCH] Moved headers into main folder as project has a simple structure --- servers.h | 0 Makefile | 2 +- dns.h | 0 slist.h | 0 4 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 582a31d..548e7b4 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ _OBJ=main.o dns.o slist.o _DEPS=dns.h servers.h slist.h IDIR=include -CFLAGS=-I$(IDIR) -Wall -g -lpthread +CFLAGS=-Wall -g -lpthread ODIR=obj SRCDIR=src diff --git a/include/dns.h b/dns.h similarity index 100% rename from include/dns.h rename to dns.h diff --git a/include/servers.h b/servers.h similarity index 100% rename from include/servers.h rename to servers.h diff --git a/include/slist.h b/slist.h similarity index 100% rename from include/slist.h rename to slist.h -- Gitblit v1.10.0