mirror of
git://git.acid.vegas/archive.git
synced 2024-11-14 20:26:41 +00:00
26 lines
434 B
Makefile
26 lines
434 B
Makefile
PROG := a2m
|
|
SRC := a2m.c
|
|
CC := cc
|
|
CFLAGS += -g -std=c99 -Wall
|
|
PREFIX ?= /usr/local
|
|
|
|
UNAME := $(shell sh -c 'uname -s 2>/dev/null')
|
|
|
|
ifeq ($(UNAME),Darwin)
|
|
CC := clang
|
|
CFLAGS += -Wunused-result -Wunused-value
|
|
LDFLAGS += -liconv
|
|
endif
|
|
|
|
default:
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(SRC) -o $(PROG)
|
|
|
|
.PHONY: install clean
|
|
|
|
install:
|
|
test -d $(PREFIX)/bin || mkdir $(PREFIX)/bin
|
|
cp $(PROG) $(PREFIX)/bin
|
|
|
|
clean:
|
|
rm -rf $(PROG) $(PROG).dSYM
|