File: makefile

package info (click to toggle)
palbart 2.4-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 368 kB
  • ctags: 618
  • sloc: ansic: 5,765; makefile: 176
file content (23 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Makefile for palbart written by vlm@debian.org on Jan 16 2000 for Debian
# This makefile is released under the GPL
#

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

all: 		palbart macro8x

palbart:	palbart-2.4.c
		gcc -g -Wall -Wstrict-prototypes -o palbart palbart-2.4.c

macro8x:	macro8x.c
		gcc -g -Wall -Wstrict-prototypes -o macro8x macro8x.c

install:	palbart macro8x
		install ./palbart $(BIN)
#		install ./macro8x $(BIN)

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