Makefile (c85f09cc92abd00c84e58ec9f0f5d942906cb713) | 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 --- 40 unchanged lines hidden (view full) --- 49 50.KEEP_STATE: 51 52all: $(PROG) 53 54install: all $(ROOTUSRSBINPROG) 55 56$(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 --- 40 unchanged lines hidden (view full) --- 49 50.KEEP_STATE: 51 52all: $(PROG) 53 54install: all $(ROOTUSRSBINPROG) 55 56$(PROG): $(OBJS) |
57 $(CC) -o $(PROG) $(OBJS) $(LDFLAGS) $(LDLIBS) | 57 $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS) |
58 $(POST_PROCESS) 59 60toktable.o: $(TABLEDIR)/toktable.c 61 $(COMPILE.c) $(TABLEDIR)/toktable.c 62 63$(POFILE): $(MSGFILES) 64 $(BUILDPO.msgfiles) 65 66_msg: $(MSGDOMAINPOFILE) 67 68lint: lint_SRCS 69 70clean: 71 $(RM) $(OBJS) 72 73include $(SRC)/cmd/Makefile.targ 74include $(SRC)/Makefile.msg.targ | 58 $(POST_PROCESS) 59 60toktable.o: $(TABLEDIR)/toktable.c 61 $(COMPILE.c) $(TABLEDIR)/toktable.c 62 63$(POFILE): $(MSGFILES) 64 $(BUILDPO.msgfiles) 65 66_msg: $(MSGDOMAINPOFILE) 67 68lint: lint_SRCS 69 70clean: 71 $(RM) $(OBJS) 72 73include $(SRC)/cmd/Makefile.targ 74include $(SRC)/Makefile.msg.targ |