mirror of https://github.com/klirichek/zj-58
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
292 B
18 lines
292 B
10 years ago
|
CC=gcc
|
||
|
RM=rm -f
|
||
|
CFLAGS=-Wl,-rpath,/usr/lib -Wall -fPIC -O3
|
||
|
LDFLAGS=
|
||
|
LDLIBS=-lcupsimage -lcups
|
||
|
|
||
|
SRCS=rastertozj.c
|
||
|
OBJS=$(subst .c,.o,$(SRCS))
|
||
|
|
||
|
all: rastertozj
|
||
|
|
||
|
rastertozj: $(OBJS)
|
||
|
gcc $(LDFLAGS) -o rastertozj rastertozj.o $(LDLIBS)
|
||
|
|
||
|
rastertozj.o: rastertozj.c
|
||
|
gcc $(CFLAGS) -c rastertozj.c
|
||
|
|