Subversion Repositories HelenOS-historic

Rev

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

Rev 59 Rev 76
Line 74... Line 74...
74
 
74
 
75
%.s: %.S
75
%.s: %.S
76
	$(CC) $(CPPFLAGS) -E $< >$@
76
	$(CC) $(CPPFLAGS) -E $< >$@
77
 
77
 
78
%.o: %.s
78
%.o: %.s
79
	$(AS) $< -o $@
79
	$(AS) $(ASFLAGS) $< -o $@
80
 
80
 
81
%.o: %.c
81
%.o: %.c
82
	$(CC) $(CFLAGS) -c $< -o $@
82
	$(CC) $(CFLAGS) -c $< -o $@
83
 
83
 
84
KS=`cat kernel.bin | wc -c`
84
KS=`cat kernel.bin | wc -c`