Description: Don't hardcode compiler/linker options.
 This allows the Debian build options set by dpkg-buildflags to be used.
Author: Didier Raboud <odyx@debian.org>
Last-Update: 2012-03-13
--- a/Makefile
+++ b/Makefile
@@ -4,20 +4,12 @@
 # Makefile for UNIX systems
 # 
 
-# compiler, compiler and linker options 
-CC	  = gcc
-OPT	  = -O2 -Wall
-LINKOPT   = -s
-
 # you should not need to change anything below
 
 SHELL     = /bin/sh
 
 EXECNAME  = cjet
 
-CFLAGS	  = $(OPT)
-LDFLAGS   = $(LINKOPT)
-
 OBJ = main.o parse.o function.o raster.o fonts.o misc.o symbol.o\
       page.o pjl.o macro.o io.o
 
