From: Jason S. Ninneman Date: Thu, 8 Jun 2017 01:37:30 +0000 (-0700) Subject: Update Makefile for linenoise. X-Git-Tag: 1.1~539 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=41265e020c857fc87e6848941115210f3ea9b98d Update Makefile for linenoise. --- 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 $@ $<