File: Makefile

package info (click to toggle)
sredird 2.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 384 kB
  • sloc: ansic: 6,080; makefile: 19
file content (14 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SRedird base makefile
# Supplied by Kevin Bertram (kevin@cate.com.au)

CC?=gcc
CFLAGS+=-O3 -pipe -fomit-frame-pointer
WFLAGS=-Wall -W -Wshadow -Wpointer-arith -Wwrite-strings -pedantic

SRC=sredird.c

sredird:	sredird.c
	$(CC) $(CFLAGS) $(WFLAGS) -o sredird $(SRC) $(LDFLAGS)

clean:
	rm -f sredird