From 41265e020c857fc87e6848941115210f3ea9b98d Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Wed, 7 Jun 2017 18:37:30 -0700 Subject: [PATCH] Update Makefile for linenoise. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c9169d9..ee8c567 100644 --- a/Makefile +++ b/Makefile @@ -3,14 +3,14 @@ VERS=1.0 CC?=gcc -CCFLAGS+=-std=c99 +CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE LIBS= UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Linux) LIBS=-lrt endif -OBJS=main.o init.o actions1.o actions2.o score.o misc.o +OBJS=main.o init.o actions1.o actions2.o score.o misc.o linenoise.o SOURCES=$(OBJS:.o=.c) dungeon.c advent.h funcs.h sizes.h adventure.text Makefile control .c.o: @@ -37,6 +37,9 @@ database.o: database.c database.h sizes.h database.c database.h: dungeon ./dungeon +linenoise.o: linenoise/linenoise.h + $(CC) $(CCFLAGS) $(DBX) -c linenoise/linenoise.c + dungeon: dungeon.c $(CC) $(CCFLAGS) -o $@ $< -- 2.31.1