Makefile (7014882c6a3672fd0e5d60200af8643ae53c5928) 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

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

64
65.KEEP_STATE:
66
67all: $(PROG)
68
69install: all $(ROOTPROG)
70
71$(PROG): $(OBJS) $(MAPFILES)
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

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

64
65.KEEP_STATE:
66
67all: $(PROG)
68
69install: all $(ROOTPROG)
70
71$(PROG): $(OBJS) $(MAPFILES)
72 $(CC) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)
72 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
73 $(POST_PROCESS)
74
75$(LEXINTSRCS): $(LEXSRCS)
76 $(LEX) $(LEXARGS) $(LEXSRCS)
77
78$(PSRC_C) + y.tab.h: $(PSRC_Y)
79 $(YACC) $(YFLAGS) $(PSRC_Y)
80 $(MV) y.tab.c $(PSRC_C)

--- 20 unchanged lines hidden ---
73 $(POST_PROCESS)
74
75$(LEXINTSRCS): $(LEXSRCS)
76 $(LEX) $(LEXARGS) $(LEXSRCS)
77
78$(PSRC_C) + y.tab.h: $(PSRC_Y)
79 $(YACC) $(YFLAGS) $(PSRC_Y)
80 $(MV) y.tab.c $(PSRC_C)

--- 20 unchanged lines hidden ---