Makefile (d3b5f56344d8bfcdd6cfb82446af0e5e55ad9ebe) Makefile (58e78d166bd2b5a9dda31250b8e8bad7c7548c0e)
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 (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

47ROOTBINBART= $(BART:%=$(ROOTBIN)/%)
48ROOTLIBDIFFH= $(DIFFH:%=$(ROOTLIB)/%)
49
50.KEEP_STATE:
51
52all: $(PROG)
53
54$(PROG): $(OBJS)
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 (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

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

47ROOTBINBART= $(BART:%=$(ROOTBIN)/%)
48ROOTLIBDIFFH= $(DIFFH:%=$(ROOTLIB)/%)
49
50.KEEP_STATE:
51
52all: $(PROG)
53
54$(PROG): $(OBJS)
55 $(CC) -o $(PROG) $(OBJS) $(LDFLAGS) $(LDLIBS)
55 $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
56 $(POST_PROCESS)
57
58clean:
59 $(RM) $(OBJS)
60
61
62#
63# Use private rule

--- 22 unchanged lines hidden ---
56 $(POST_PROCESS)
57
58clean:
59 $(RM) $(OBJS)
60
61
62#
63# Use private rule

--- 22 unchanged lines hidden ---