File: Makefile.win32

package info (click to toggle)
id3ren 1.1b0-6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 280 kB
  • ctags: 138
  • sloc: ansic: 1,843; sh: 492; makefile: 81
file content (16 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS = -O2 -s -Wall
CC = gcc
RM = rm -f
INSTALL_DIR = ..
INSTALL_NAME = id3ren.exe
SOURCES = id3ren.c id3tag.c file.c misc.c

all:
	${CC} ${CFLAGS} -o ${INSTALL_NAME} ${SOURCES}

install: all
	copy /y ${INSTALL_NAME} ${INSTALL_DIR}\${INSTALL_NAME}

clean:
	${RM} ${INSTALL_NAME} *.o *.bak core