[go: up one dir, main page]

File: Makefile

package info (click to toggle)
djtools 1.2.8
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 740 kB
  • sloc: cpp: 993; ansic: 162; makefile: 52
file content (27 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (6)
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
# Makefile to HPTools Version 1.2.3
# by Michael Janson

#DEVICE =' "/dev/lp0"'
DEVICE =' "/dev/lp1" '
HPPATH = /usr/bin
MANPATH= /usr/man
# HPPATH = /usr/local/bin

# Nothing to be changed after this line

hpset: hp.c

	gcc hp.c -o hpset -O3 -DDEVICE=$(DEVICE)


all: hpset

install: all
	
	install hpset $(HPPATH)
	install hpset.1.gz $(MANPATH)/man1

clean: 

	rm -f hpset