16 lines
488 B
Makefile
16 lines
488 B
Makefile
|
# hhl.cprog.sbase.mk - hhl - /usr/include/mk
|
||
|
# Copyright 2020 Nathan Fisher <nfisher.sr@gmail.com>
|
||
|
#
|
||
|
onestage ?= true
|
||
|
cppflags += -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_FILE_OFFSET_BITS=64
|
||
|
cflags += -std=c99 -Wall -pedantic
|
||
|
ldflags += -I../../../include
|
||
|
libs += -L../../lib/libsbutil
|
||
|
libs += -L../../lib/libutf
|
||
|
libs += -lsbutil
|
||
|
libs += -lutf
|
||
|
include hhl.cprog.mk
|
||
|
|
||
|
${sbase_libs}:
|
||
|
$(MAKE) -C ../../lib/libutil ../../lib/libutf
|