File: make.dj

package info (click to toggle)
cjet 0.8.9-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 384 kB
  • sloc: ansic: 2,938; makefile: 12; sh: 2
file content (24 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Makefile for CJet - LaserJet Emulation for CaPSL printers
# Copyright (C) 1994-1996 Michael Huijsmans mgh@sbox.tu-graz.ac.at
#
# Makefile for DJGPP
# make -f make.dj
#

EXECNAME = cjetx
CC	 = gcc
OPT	 = -O2 -Wall

CFLAGS	 = $(OPT)

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

cjet: $(OBJ)
	$(CC) -s -o $(EXECNAME) $(OBJ)
	coff2exe $(EXECNAME)

clean:
	del *.o $(EXECNAME)
	

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