File: Makefile

package info (click to toggle)
mp3rename 0.6-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 76 kB
  • ctags: 12
  • sloc: ansic: 465; makefile: 56
file content (18 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PROG =  mp3rename
SRCS =  mp3rename.c 
OBJS =  mp3rename.o 
RM = /bin/rm
INSTALL = /usr/bin/install

all: mp3rename

mp3rename: $(OBJS)
	$(CC) $(CFLAGS) -o $@ $(OBJS) 

clean:
	$(RM) -f $(OBJS) $(PROG) *~ *core

install:
	$(INSTALL) -D mp3rename $(PREFIX)/usr/bin/mp3rename