[go: up one dir, main page]

File: Makefile

package info (click to toggle)
cfourcc 0.1.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 116 kB
  • ctags: 23
  • sloc: ansic: 135; makefile: 20
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