Changeset 1b74fa2 in thomson for code/C/HxCHost/Makefile


Ignore:
Timestamp:
Mar 10, 2012, 2:46:13 PM (12 years ago)
Author:
Adrien Destugues <pulkomandy@…>
Branches:
main
Children:
ee447bf
Parents:
53c4be3
Message:

work in progress write support.

  • With latest beta firmware there is no spinup problem anymore in direct access mode,
  • Read the CFG file and display settings menu
  • Save settings (not perfectly working yet)
  • Some tweaks all around.
  • Move code downwards in memory, because we run out of space !

git-svn-id: svn://localhost/thomson@18 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/C/HxCHost/Makefile

    r53c4be3 r1b74fa2  
    2727# Linking
    2828TEST.BIN: $(OBJECTS)
    29         $(CC) -Os $(OBJECTS) -o TEST.BIN -Wl,--map -Wl,-Ttext,0x7100 -nostdlib -lgcc
     29        $(CC) -Os $(OBJECTS) -o TEST.BIN -Wl,--map -Wl,-Ttext,0x6100 -nostdlib -lgcc
    3030
    3131#Compiling
    32 obj/$(TARGET)/%.o: %.c
     32obj/$(TARGET)/%.o: %.c obj/$(TARGET)
    3333        $(CC) $(CFLAGS) -c $< -o $@
    3434
    35 obj/$(TARGET)/%.o: pff/%.c
     35obj/$(TARGET)/%.o: pff/%.c obj/$(TARGET)
    3636        $(CC) $(CFLAGS) -c $< -o $@
    3737
    38 obj/$(TARGET)/%.o: %.s
     38obj/$(TARGET)/%.o: %.s obj/$(TARGET)
    3939        $(AS) $< -o $@
     40
     41# init
     42obj/$(TARGET):
     43        mkdir -p obj/$(TARGET)
Note: See TracChangeset for help on using the changeset viewer.