lbmk/util/e6400-flash-unlock/Makefile

16 lines
339 B
Makefile

# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2023 Nicholas Chin
CC=cc
CFLAGS=-Wall -Wextra -Werror -O2 -pedantic
ifeq ($(shell uname), OpenBSD)
CFLAGS += -l$(shell uname -p)
endif
SRCS=e6400_flash_unlock.c accessors.c
all: $(SRCS) accessors.h
$(CC) $(CFLAGS) $(SRCS) -o e6400_flash_unlock
clean:
rm -f e6400_flash_unlock