24 #
25
26 LIBRARY = mpss.a
27 VERS = .1
28 OBJECTS = mpss.o
29
30 include ../../Makefile.lib
31
32 SRCDIR = ../common
33
34 # There should be a mapfile here
35 MAPFILES =
36
37 LIBS = $(DYNLIB)
38 LDLIBS += -lc -lgen
39 CFLAGS += $(CCVERBOSE)
40 CPPFLAGS += -D_REENTRANT
41 DYNFLAGS += $(BLOCAL) $(ZNOVERSION)
42
43 CERRWARN += -_gcc=-Wno-parentheses
44 CERRWARN += -_gcc=-Wno-uninitialized
45
46 .KEEP_STATE:
47
48 all: $(LIBS)
49
50 lint: lintcheck
51
52 include ../../Makefile.targ
|
24 #
25
26 LIBRARY = mpss.a
27 VERS = .1
28 OBJECTS = mpss.o
29
30 include ../../Makefile.lib
31
32 SRCDIR = ../common
33
34 # There should be a mapfile here
35 MAPFILES =
36
37 LIBS = $(DYNLIB)
38 LDLIBS += -lc -lgen
39 CFLAGS += $(CCVERBOSE)
40 CPPFLAGS += -D_REENTRANT
41 DYNFLAGS += $(BLOCAL) $(ZNOVERSION)
42
43 CERRWARN += -_gcc=-Wno-parentheses
44 CERRWARN += $(CNOWARN_UNINIT)
45
46 .KEEP_STATE:
47
48 all: $(LIBS)
49
50 lint: lintcheck
51
52 include ../../Makefile.targ
|