about summary refs log tree commit diff stats
path: root/translate_subx
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-07-26 01:21:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-07-26 01:21:46 -0700
commit438c00fd1fadf5ac1240f33b809afa9a5c9af9bf (patch)
tree6af92256026d86e9f7f8c5d065d5c4e8a5b544a6 /translate_subx
parentef637b6baba763ea3b76a06ec34babb9ee08d2cd (diff)
downloadmu-438c00fd1fadf5ac1240f33b809afa9a5c9af9bf.tar.gz
.
Diffstat (limited to 'translate_subx')
0 files changed, 0 insertions, 0 deletions
radford <roryrjb@gmail.com> 2020-04-18 22:19:52 +0100 committer Rory Bradford <roryrjb@gmail.com> 2020-04-18 22:19:52 +0100 Add wholename option' href='/roryrjb/rf/commit/Makefile?id=4120bca8530b87747b44efec0552b946b60d657e'>4120bca ^
0de5b3a



4120bca ^
0de5b3a

4120bca ^






1cc7672 ^
0de5b3a

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
       
 
        


                    
       

                                        
                                          

                                    
                           



               
                                         

              






                                                              
 

                         
.POSIX:

BIN = rf
VERSION = 0.0.5
OBJS = rf.o ignore.o
PREFIX = /usr/local
CC = cc
CFLAGS = -std=c99 -pedantic -O2 \
	  -Wall -Wextra -Wsign-compare \
	  -fstack-protector-strong -fpie \
	  -D_FORTIFY_SOURCE=2 \
	  -DVERSION='"$(VERSION)"' \
	  -DNAME='"$(BIN)"'

build: $(BIN)

$(BIN): $(OBJS)
	$(CC) $(CFLAGS) -o $(BIN) $(OBJS)

install: build
	mkdir -p \
		$(DESTDIR)$(PREFIX)/bin \
		$(DESTDIR)$(PREFIX)/man/man1 \
		$(DESTDIR)$(PREFIX)/man/man5
	install -m755 $(BIN) $(DESTDIR)$(PREFIX)/bin/
	install -m444 rf.1 $(DESTDIR)$(PREFIX)/man/man1/
	install -m444 rfignore.5 $(DESTDIR)$(PREFIX)/man/man5/

clean:
	rm -vf $(BIN) *.o