Subversion Repositories HelenOS-historic

Rev

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

Rev 1109 Rev 1161
Line 220... Line 220...
220
 
220
 
221
disasm: kernel.raw
221
disasm: kernel.raw
222
	$(OBJDUMP) -d kernel.raw > kernel.disasm
222
	$(OBJDUMP) -d kernel.raw > kernel.disasm
223
 
223
 
224
%.o: %.S
224
%.o: %.S
225
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
225
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
226
 
226
 
227
%.o: %.s
227
%.o: %.s
228
	$(AS) $(AFLAGS) $< -o $@
228
	$(AS) $(AFLAGS) $< -o $@
229
 
229
 
230
%.o: %.c
230
%.o: %.c