summaryrefslogtreecommitdiff
path: root/hex2ascii/Makefile
blob: d3ff89349e7a23ae03256003f26841ead34cabe6 (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) -Wall -ansi -pedantic

clean:
	$(QUIET_CL)rm -f hex2ascii

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