#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#

#
# Copyright 2024 Oxide Computer Company
#

PROGS = \
	hexdump_basic

DATAFILES = \
	_input		\
	addr1		\
	addr2		\
	address		\
	address+header	\
	align1		\
	ascii		\
	basic		\
	dedup		\
	default		\
	doublespace	\
	group2		\
	group4		\
	group8		\
	header		\
	indent		\
	marker1		\
	narrow1		\
	narrow2		\
	wide1		\
	width12

PROGS32 = $(PROGS:%=%.32)
PROGS64 = $(PROGS:%=%.64)

COMOBJS = hexdump.o ilstr.o
COMOBJS32 = $(COMOBJS:.o=.32.o)
COMOBJS64 = $(COMOBJS:.o=.64.o)

ROOTOPTDIR = $(ROOT)/opt/os-tests/tests
ROOTOPTHEXDUMP = $(ROOTOPTDIR)/hexdump
ROOTOPTDATADIR = $(ROOTOPTHEXDUMP)/data
ROOTOPTPROGS = $(PROGS32:%=$(ROOTOPTHEXDUMP)/%) $(PROGS64:%=$(ROOTOPTHEXDUMP)/%)
ROOTOPTDATA = $(DATAFILES:%=$(ROOTOPTDATADIR)/%)

$(ROOTOPTDATA) := FILEMODE = 0444

include $(SRC)/cmd/Makefile.cmd
include $(SRC)/cmd/Makefile.ctf

LDLIBS += -lumem
LDLIBS64 += -lumem

CTF_MODE = link

CSTD = $(GNU_C99)

.KEEP_STATE:

all: $(PROGS32) $(PROGS64)

install: $(ROOTOPTPROGS) $(ROOTOPTDATA)

clean:
	$(RM) $(COMOBJS32) $(COMOBJS64)

$(ROOTOPTPROGS): $(PROGS32) $(PROGS64) $(ROOTOPTHEXDUMP)

$(ROOTOPTDATA): $(ROOTOPTDATADIR)

$(ROOTOPTDIR):
	$(INS.dir)

$(ROOTOPTHEXDUMP): $(ROOTOPTDIR)
	$(INS.dir)

$(ROOTOPTDATADIR): $(ROOTOPTHEXDUMP)
	$(INS.dir)

$(ROOTOPTHEXDUMP)/%: %
	$(INS.file)

%.32: %.c $(COMOBJS32)
	$(LINK.c) -o $@ $^ $(LDLIBS)
	$(POST_PROCESS)

%.64: %.c $(COMOBJS64)
	$(LINK64.c) -o $@ $^ $(LDLIBS64)
	$(POST_PROCESS)

%.32.o: $(SRC)/common/hexdump/%.c
	$(COMPILE.c) $< -o $@
	$(POST_PROCESS_O)

%.64.o: $(SRC)/common/hexdump/%.c
	$(COMPILE64.c) $< -o $@
	$(POST_PROCESS_O)

%.32.o: $(SRC)/common/ilstr/%.c
	$(COMPILE.c) $< -o $@
	$(POST_PROCESS_O)

%.64.o: $(SRC)/common/ilstr/%.c
	$(COMPILE64.c) $< -o $@
	$(POST_PROCESS_O)

clobber: clean
	$(RM) $(PROGS32) $(PROGS64)

FRC: