34 bindresvport.o
35
36 # include library definitions
37 include ../../Makefile.lib
38
39 # install this library in the root filesystem
40 include ../../Makefile.rootfs
41
42 SRCDIR = ../common
43
44 pics/%.o: ../common/%.c
45 $(COMPILE.c) -o $@ $<
46 $(POST_PROCESS_O)
47
48 LIBS = $(DYNLIB) $(LINTLIB)
49
50 CPPFLAGS += -DYP
51
52 CERRWARN += -_gcc=-Wno-unused-variable
53 CERRWARN += -_gcc=-Wno-switch
54 CERRWARN += -_gcc=-Wno-uninitialized
55 CERRWARN += -_gcc=-Wno-parentheses
56
57 $(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC)
58
59 LDLIBS += -lnsl -lc
60
61 # Needed so header files with relative paths will work
62 CPPFLAGS += -I..
63
64 .KEEP_STATE:
65
66 lint: lintcheck
67
68 # include library targets
69 include ../../Makefile.targ
|
34 bindresvport.o
35
36 # include library definitions
37 include ../../Makefile.lib
38
39 # install this library in the root filesystem
40 include ../../Makefile.rootfs
41
42 SRCDIR = ../common
43
44 pics/%.o: ../common/%.c
45 $(COMPILE.c) -o $@ $<
46 $(POST_PROCESS_O)
47
48 LIBS = $(DYNLIB) $(LINTLIB)
49
50 CPPFLAGS += -DYP
51
52 CERRWARN += -_gcc=-Wno-unused-variable
53 CERRWARN += -_gcc=-Wno-switch
54 CERRWARN += $(CNOWARN_UNINIT)
55 CERRWARN += -_gcc=-Wno-parentheses
56
57 $(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC)
58
59 LDLIBS += -lnsl -lc
60
61 # Needed so header files with relative paths will work
62 CPPFLAGS += -I..
63
64 .KEEP_STATE:
65
66 lint: lintcheck
67
68 # include library targets
69 include ../../Makefile.targ
|