diff options
Diffstat (limited to 'programs')
-rw-r--r-- | programs/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/programs/Makefile b/programs/Makefile index f471109..94c4b14 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -52,13 +52,19 @@ DEBUGFLAGS= -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \ -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \ -Wpointer-arith -Wstrict-aliasing=1 CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS) + +include ../Makefile.inc + +ifeq ($(TARGET_OS)$(shell uname -r),SunOS5.10) +LDFLAGS += -lrt +endif + FLAGS = $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) LZ4_VERSION=$(LIBVER) MD2ROFF = ronn MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="lz4 $(LZ4_VERSION)" -include ../Makefile.inc default: lz4-release |