summaryrefslogtreecommitdiff
path: root/hex2ascii/Makefile
blob: cadb3c471a884f9cd142418a201c0bd8f92b0f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: hex2ascii

include ../common.mk

hex2ascii:
	$(QUIET_CC)$(GCC) hex2ascii.c -o hex2ascii $(CFLAGS) $(LDFLAGS) -Wall -ansi -pedantic

clean:
	$(QUIET_CL)rm -f hex2ascii

install:
	install -d $(DESTDIR)$(TCOS_BINS)
	install -m 755 hex2ascii $(DESTDIR)$(TCOS_BINS)/hex2ascii