[go: up one dir, main page]

File: Makefile

package info (click to toggle)
cfourcc 0.1.2-8
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 140 kB
  • sloc: ansic: 135; makefile: 23
file content (27 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (7)
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
# plain simple and stupid Makefile for cfourcc
#
# author : mypapit
# date : 25 February 2005
#

CC=gcc
CFLAGS=-O2 -pedantic -ansi -Wall
INSTALL=install
PREFIX=/usr/local


all :
	$(CC) $(CFLAGS) cfourcc.c -o cfourcc

install : all
	strip cfourcc
	$(INSTALL) -m755 cfourcc $(PREFIX)/bin

clean : 
	rm -f cfourcc