File: makefile

package info (click to toggle)
palbart 2.3-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 184 kB
  • ctags: 267
  • sloc: ansic: 2,685; makefile: 50
file content (20 lines) | stat: -rw-r--r-- 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Makefile for palbart written by vlm@execpc.com on Jan 16 2000 for Debian
# This makefile is released under the GPL
#

DESTDIR 	=
BIN		= $(DESTDIR)/usr/bin


all: 		palbart

palbart:	palbart.c
		gcc -O1 -o palbart palbart.c

install:	palbart
		install ./palbart $(BIN)

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