Skip to content

Commit

Permalink
replace sdcclib with sdar. sdcclib was removed in sdcc 3.9.0 after po…
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Przybysz committed Apr 24, 2022
1 parent 6df2ed7 commit 30a2384
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#### Programs used by this Makefile ############################################
CC := sdcc# C compiler: creates object files (.rel) from C files (.c)
AS := sdas8051# Assembler: creates object files (.rel) from assembly files (.s)
AR := sdcclib# Librarian: creates .lib
AR := sdar# Librarian: creates .lib
LD := sdld# Linker: creates .hex files from .rel/.lib files)
PACKIHX := packihx# makes .hex files smaller
MV := move# moves files
Expand Down Expand Up @@ -156,13 +156,13 @@ clean:
ifdef VERBOSE
COMPILE_COMMAND = $(CC) -c $< $(C_FLAGS) -o $@
ASSEMBLE_COMMAND = $(AS) -glos $(AS_FLAGS) $<
ARCHIVE_COMMAND = $(AR) $@ $^
ARCHIVE_COMMAND = $(AR) -rc $@ $^
LINK_COMMAND = $(CC) $(LD_FLAGS) libraries/xpage/xpage.rel $^
else
V=@
COMPILE_COMMAND = @echo Compiling $@ && $(CC) -c $< $(C_FLAGS) -o $@
ASSEMBLE_COMMAND = @echo Assembling $@ && $(AS) -glos $(AS_FLAGS) $<
ARCHIVE_COMMAND = @echo Creating $@ && $(AR) $@ $^
ARCHIVE_COMMAND = @echo Creating $@ && $(AR) -rc $@ $^
LINK_COMMAND = @echo Linking $@ && $(CC) $(LD_FLAGS) libraries/xpage/xpage.rel $^
endif

Expand Down

0 comments on commit 30a2384

Please sign in to comment.