22 # Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 #
26
27 LIBRARY = libv12n.a
28 VERS = .1
29
30 OBJECTS = $(MACHCOBJS) $(CMNOBJS)
31
32 include ../../Makefile.lib
33
34 LIBS = $(DYNLIB) $(LINTLIB)
35
36 SRCDIR = ../common
37 SRCS = $(MACHCOBJS:%.o=../$(MACH)/%.c)
38
39 CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
40 CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
41
42 CERRWARN += -_gcc=-Wno-uninitialized
43
44 $(LINTLIB) := SRCS = ../common/llib-lv12n
45
46 .KEEP_STATE:
47
48 all: $(LIBS)
49
50 lint: $(LINTLIB) lintcheck
51
52 pics/%.o: ../$(MACH)/%.c
53 $(COMPILE.c) -o $@ $<
54 $(POST_PROCESS_O)
55
56 include ../../Makefile.targ
|
22 # Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 #
26
27 LIBRARY = libv12n.a
28 VERS = .1
29
30 OBJECTS = $(MACHCOBJS) $(CMNOBJS)
31
32 include ../../Makefile.lib
33
34 LIBS = $(DYNLIB) $(LINTLIB)
35
36 SRCDIR = ../common
37 SRCS = $(MACHCOBJS:%.o=../$(MACH)/%.c)
38
39 CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
40 CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
41
42 CERRWARN += $(CNOWARN_UNINIT)
43
44 $(LINTLIB) := SRCS = ../common/llib-lv12n
45
46 .KEEP_STATE:
47
48 all: $(LIBS)
49
50 lint: $(LINTLIB) lintcheck
51
52 pics/%.o: ../$(MACH)/%.c
53 $(COMPILE.c) -o $@ $<
54 $(POST_PROCESS_O)
55
56 include ../../Makefile.targ
|