mklist: Move makefile one level up.

Seperate it from source.
This commit is contained in:
Laurens Valk 2020-09-20 20:58:24 +02:00
parent 65b659057a
commit 070073db9f
No known key found for this signature in database
GPG Key ID: C5FCCBB5E9FB117A
5 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
CC=gcc CC=gcc
CFLAGS= -I./include CFLAGS= -I./src/include
AR = ar AR = ar
RANLIB = ranlib RANLIB = ranlib
SRCS = mklist.c SRCS = src/mklist.c
OBJS = $(SRCS:.c=.o) OBJS = $(SRCS:.c=.o)
all : mklist all : mklist