Makefile.com (c0bb4f7308f9d7f3f31eb636c73ef07c6d19b5f3) Makefile.com (10ae99ee6a0e5168918d2bba208bcf536edb08f7)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source. A copy of the CDDL is also available via the Internet at

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

24 hash.o callback.o word.o loader.o pager.o extras.o \
25 loader_emu.o gfx_fb.o pnglite.o lz4.o
26
27include $(SRC)/lib/Makefile.lib
28
29LIBS= $(DYNLIB) $(LINTLIB)
30
31FICLDIR= $(SRC)/common/ficl
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source. A copy of the CDDL is also available via the Internet at

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

24 hash.o callback.o word.o loader.o pager.o extras.o \
25 loader_emu.o gfx_fb.o pnglite.o lz4.o
26
27include $(SRC)/lib/Makefile.lib
28
29LIBS= $(DYNLIB) $(LINTLIB)
30
31FICLDIR= $(SRC)/common/ficl
32LZ4= $(SRC)/common/lz4
32CSTD= $(CSTD_GNU99)
33PNGLITE= $(SRC)/common/pnglite
34CPPFLAGS += -I.. -I$(FICLDIR) -I$(FICLDIR)/emu -D_LARGEFILE64_SOURCE=1
33CSTD= $(CSTD_GNU99)
34PNGLITE= $(SRC)/common/pnglite
35CPPFLAGS += -I.. -I$(FICLDIR) -I$(FICLDIR)/emu -D_LARGEFILE64_SOURCE=1
35CPPFLAGS += -I$(PNGLITE)
36CPPFLAGS += -I$(PNGLITE) -I$(LZ4)
36CFLAGS += $(C_BIGPICFLAGS)
37CFLAGS64 += $(C_BIGPICFLAGS64)
38
39# As variable "count" is marked volatile, gcc 4.4.4 will complain about
40# function argument. So we switch this warning off
41# for time being, till gcc 4.4.4 will be replaced.
42pics/vm.o := CERRWARN += -_gcc=-Wno-clobbered
43

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

57pics/%.o: $(FICLDIR)/ficlplatform/%.c $(HEADERS)
58 $(COMPILE.c) -o $@ $<
59 $(POST_PROCESS_O)
60
61pics/%.o: $(FICLDIR)/emu/%.c $(HEADERS)
62 $(COMPILE.c) -o $@ $<
63 $(POST_PROCESS_O)
64
37CFLAGS += $(C_BIGPICFLAGS)
38CFLAGS64 += $(C_BIGPICFLAGS64)
39
40# As variable "count" is marked volatile, gcc 4.4.4 will complain about
41# function argument. So we switch this warning off
42# for time being, till gcc 4.4.4 will be replaced.
43pics/vm.o := CERRWARN += -_gcc=-Wno-clobbered
44

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

58pics/%.o: $(FICLDIR)/ficlplatform/%.c $(HEADERS)
59 $(COMPILE.c) -o $@ $<
60 $(POST_PROCESS_O)
61
62pics/%.o: $(FICLDIR)/emu/%.c $(HEADERS)
63 $(COMPILE.c) -o $@ $<
64 $(POST_PROCESS_O)
65
65pics/%.o: $(FICLDIR)/softcore/%.c $(HEADERS)
66pics/%.o: $(LZ4)/%.c $(HEADERS)
66 $(COMPILE.c) -o $@ $<
67 $(POST_PROCESS_O)
68
69pics/%.o: $(PNGLITE)/%.c $(HEADERS)
70 $(COMPILE.c) -o $@ $<
71 $(POST_PROCESS_O)
72
73$(LINTLIB) := SRCS= ../$(LINTSRC)
74
75all: $(LIBS)
76
77include $(SRC)/lib/Makefile.targ
67 $(COMPILE.c) -o $@ $<
68 $(POST_PROCESS_O)
69
70pics/%.o: $(PNGLITE)/%.c $(HEADERS)
71 $(COMPILE.c) -o $@ $<
72 $(POST_PROCESS_O)
73
74$(LINTLIB) := SRCS= ../$(LINTSRC)
75
76all: $(LIBS)
77
78include $(SRC)/lib/Makefile.targ