mirror of
https://github.com/tat3r/a2m.git
synced 2024-11-14 11:46:39 +00:00
added install target
This commit is contained in:
parent
794a0264e1
commit
e2a8669b2a
7
Makefile
7
Makefile
@ -2,6 +2,7 @@ PROG := a2m
|
||||
SRC := a2m.c
|
||||
CC := cc
|
||||
CFLAGS += -g -std=c99 -Wall
|
||||
PREFIX ?= /usr/local
|
||||
|
||||
UNAME := $(shell sh -c 'uname -s 2>/dev/null')
|
||||
|
||||
@ -14,5 +15,11 @@ endif
|
||||
default:
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(SRC) -o $(PROG)
|
||||
|
||||
.PHONY: install clean
|
||||
|
||||
install:
|
||||
install -d 0755 $(PREFIX)/bin/
|
||||
install -m 0755 $(PROG) $(PREFIX)/bin/$(PROG)
|
||||
|
||||
clean:
|
||||
rm -rf $(PROG) $(PROG).dSYM
|
||||
|
Loading…
Reference in New Issue
Block a user