view Makefile.gen @ 178:fe42ad960bc8 rel-0_7_4

Oops, forgot to add the necessary th-libs module th_datastruct.o to depencies, needed for the new string escaping stuff.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 06 Jul 2018 21:10:45 +0300
parents 3d578c0043ae
children d26bc1adfd14
line wrap: on
line source

CFLAGS += -W -Wall -Wextra -std=c11 -pedantic -I./ -D_XOPEN_SOURCE=500
CFLAGS += -g
CFLAGS += -O2
THLIBS = th-libs/


#
# Objects
#
THLIBS_OBJ=th_util.o th_string.o th_ioctx.o \
	th_args.o th_crypto.o th_datastruct.o

SIDINFO_OBJ=sidlib.o sidinfo.o
SIDINFO_BIN=$(BINPATH)sidinfo$(EXEEXT)

TARGETS += $(SIDINFO_BIN)

include $(THLIBS)/Makefile.inc

$(SIDINFO_BIN): $(addprefix $(OBJPATH),$(SIDINFO_OBJ)) $(THLIBS_A) $(EXTRAOBJS)
	$(LINK_BIN)