BUG=chromium:1088209 TEST=emerge coreboot-utils (with patches to the ebuild) works Signed-off-by: Patrick Georgi <pgeorgi@google.com> Change-Id: I25d237d048e417f4e412583031905ecf3614c431 Reviewed-on: https://review.coreboot.org/c/coreboot/+/42016 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ##
 | |
| ## Makefile for nvram utility
 | |
| ##
 | |
| ## (C) 2005-2008 coresystems GmbH
 | |
| ## written by Stefan Reinauer <stepan@coresystems.de>
 | |
| ##
 | |
| ## SPDX-License-Identifier: GPL-2.0-only
 | |
| 
 | |
| PROGRAM = nvramtool
 | |
| 
 | |
| CC     ?= gcc
 | |
| INSTALL = /usr/bin/env install
 | |
| PREFIX  = /usr/local
 | |
| CFLAGS  = -O2 -g -Wall -Wextra -Wmissing-prototypes -I. -DCMOS_HAL=1
 | |
| #CFLAGS  = -Os -Wall
 | |
| 
 | |
| CLI_OBJS = cli/nvramtool.o cli/opts.o
 | |
| 
 | |
| OBJS =  cmos_lowlevel.o cmos_ops.o common.o compute_ip_checksum.o \
 | |
| 	hexdump.o input_file.o layout.o accessors/layout-common.o accessors/layout-text.o accessors/layout-bin.o lbtable.o   \
 | |
| 	reg_expr.o cbfs.o accessors/cmos-hw-unix.o accessors/cmos-mem.o
 | |
| 
 | |
| OBJS += $(CLI_OBJS)
 | |
| 
 | |
| OS_ARCH        = $(shell uname)
 | |
| ifeq ($(OS_ARCH), Darwin)
 | |
| LDFLAGS = -framework DirectHW
 | |
| endif
 | |
| ifeq ($(OS_ARCH),$(filter $(OS_ARCH),NetBSD OpenBSD))
 | |
| LDFLAGS = -l$(shell uname -p)
 | |
| endif
 | |
| ifeq ($(shell uname -o 2>/dev/null), Cygwin)
 | |
| LDFLAGS = -lioperm
 | |
| CFLAGS += -D__GLIBC__
 | |
| endif
 | |
| 
 | |
| all: dep $(PROGRAM)
 | |
| 
 | |
| $(PROGRAM): $(OBJS)
 | |
| 	$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS) $(CFLAGS)
 | |
| 
 | |
| clean:
 | |
| 	rm -f $(PROGRAM) $(OBJS) junit.xml
 | |
| 
 | |
| distclean: clean
 | |
| 	rm -f .dependencies
 | |
| 
 | |
| dep:
 | |
| 	@$(CC) -MM -MG *.c > .dependencies
 | |
| 
 | |
| install: $(PROGRAM)
 | |
| 	mkdir -p $(DESTDIR)$(PREFIX)/sbin
 | |
| 	$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
 | |
| 	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
 | |
| 	$(INSTALL) -p -m644 cli/$(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
 | |
| 
 | |
| .PHONY: all clean distclean dep
 | |
| 
 | |
| -include .dependencies
 |