mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-12 06:40:08 +02:00
15 lines
374 B
Makefile
15 lines
374 B
Makefile
bin_PROGRAMS = sidreloc
|
|
dist_sidreloc_SOURCES = sidreloc.c solver.c cpu.c reloc.h
|
|
notrans_dist_man1_MANS = sidreloc.1
|
|
|
|
sidreloc_CFLAGS=-Wall -std=c99 -O3 -DNDEBUG $(ENABLE_BSD)
|
|
|
|
check_SCRIPTS = greptest.sh
|
|
|
|
TESTS = $(check_SCRIPTS)
|
|
|
|
greptest.sh:
|
|
@echo './sidreloc --version | grep "sidreloc @PACKAGE_VERSION@"' > greptest.sh
|
|
@chmod +x greptest.sh
|
|
|
|
CLEANFILES = greptest.sh
|