Makefile (7c478bd95313f5f23a4c958a745db2134aa03244) Makefile (7b07063d906859b2be1e88791f801b3c96e432f6)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License"). You may not use this file except in compliance
7# with the License.
8#

--- 6 unchanged lines hidden (view full) ---

15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License"). You may not use this file except in compliance
7# with the License.
8#

--- 6 unchanged lines hidden (view full) ---

15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# ident "%Z%%M% %I% %E% SMI"
24#
25# Copyright 1989-2002 Sun Microsystems, Inc. All rights reserved.
26# Use is subject to license terms.
23# Copyright 1989-2002 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25# Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
27#
28# cmd/lp/filter/postscript/dpost/Makefile
29#
30
31include ../../../Makefile.lp
32
33PROG= dpost
34

--- 30 unchanged lines hidden (view full) ---

65 $(LINK.c) -o $@ $(OBJS) $(COMMONOBJS) $(LDLIBS)
66 $(POST_PROCESS)
67
68$(COMMONOBJS): $$(@:%.o=%.c)
69 cd $(@D); $(MAKE) $(@F)
70
71ps_include.o: ps_include.h
72ps_include.h: ps_include.ps ps_include.awk
26#
27# cmd/lp/filter/postscript/dpost/Makefile
28#
29
30include ../../../Makefile.lp
31
32PROG= dpost
33

--- 30 unchanged lines hidden (view full) ---

64 $(LINK.c) -o $@ $(OBJS) $(COMMONOBJS) $(LDLIBS)
65 $(POST_PROCESS)
66
67$(COMMONOBJS): $$(@:%.o=%.c)
68 cd $(@D); $(MAKE) $(@F)
69
70ps_include.o: ps_include.h
71ps_include.h: ps_include.ps ps_include.awk
73 $(RM) $@; awk -f ps_include.awk ps_include.ps >$@
72 $(RM) $@; $(AWK) -f ps_include.awk ps_include.ps >$@
74
75clean:
76 $(RM) $(OBJS) ps_include.h
77
78strip:
79 $(STRIP) $(PROG)
80
81lint: lint_SRCS
82
83include ../../../../Makefile.targ
84
85include ../Makefile.msg
73
74clean:
75 $(RM) $(OBJS) ps_include.h
76
77strip:
78 $(STRIP) $(PROG)
79
80lint: lint_SRCS
81
82include ../../../../Makefile.targ
83
84include ../Makefile.msg