File: makefile

package info (click to toggle)
rio 1.07-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 212 kB
  • ctags: 486
  • sloc: cpp: 2,113; makefile: 48
file content (26 lines) | stat: -rwxr-xr-x 454 bytes parent folder | download | duplicates (5)
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
###############################################################################
#
#	RIO utility makefile for linux g++
#
#	Ashpool Systems (c) 1999
#
###############################################################################

# Editied for Debian GNU/Linux
DESTDIR 	=
BIN		= $(DESTDIR)/usr/bin


all: 		rio

rio:		app.cpp rio.cpp
		g++ -O1 -o rio app.cpp rio.cpp
#		chmod +s rio

install:	rio
		install ./rio $(BIN)

clean:
		rm -f rio
		rm -f *.o