File: Makefile

package info (click to toggle)
cjet 0.8.9-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 368 kB
  • sloc: ansic: 2,937; makefile: 12; sh: 2
file content (28 lines) | stat: -rw-r--r-- 482 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
28
# Makefile for CJet - LaserJet Emulation for CaPSL printers
# Copyright (C) 1996 Michael Huijsmans mgh@sbox.tu-graz.ac.at
#
# Makefile for UNIX systems
# 

# you should not need to change anything below

SHELL     = /bin/sh

EXECNAME  = cjet

OBJ = main.o parse.o function.o raster.o fonts.o misc.o symbol.o\
      page.o pjl.o macro.o io.o


cjet: $(OBJ)
	$(CC) $(LDFLAGS) -o $(EXECNAME) $(OBJ)

clean:
	rm -f *.o $(EXECNAME)


$(OBJ): pcl.h cjet.h capsl.h 
symbol.o: symbol.h