Subversion Repositories HelenOS

Rev

Rev 3666 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3666 Rev 3886
Line 27... Line 27...
27
#
27
#
28
 
28
 
29
## Setup toolchain
29
## Setup toolchain
30
#
30
#
31
 
31
 
32
LIBC_PREFIX = ../../../lib/libc
32
LIBC_PREFIX = ../../../../lib/libc
33
SOFTINT_PREFIX = ../../../lib/softint
33
SOFTINT_PREFIX = ../../../../lib/softint
34
include $(LIBC_PREFIX)/Makefile.toolchain
34
include $(LIBC_PREFIX)/Makefile.toolchain
35
include ../../../../Makefile.config
35
include ../../../../../Makefile.config
36
 
36
 
37
LIBS = $(LIBC_PREFIX)/libc.a
37
LIBS = $(LIBC_PREFIX)/libc.a
38
 
38
 
39
## Sources
39
## Sources
40
#
40
#
41
 
41
 
42
OUTPUT = networking_startup
42
OUTPUT = networking_startup
43
SOURCES = \
43
SOURCES = \
44
	networking_startup.c \
44
	networking_startup.c \
45
	../modules.c \
45
	../../modules.c \
46
	../measured_strings.c \
46
	../../self_test.c \
47
	../self_test.c
47
	../../structures/measured_strings.c
48
 
48
 
49
DEFS += -D NETWORKING_$(NETWORKING)
49
DEFS += -D NETWORKING_$(NETWORKING)
50
 
50
 
51
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
51
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
52
 
52