mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
time-sync: Fix arguments order in linker command
Also adds the resulting binary to .gitignore Change-Id: Ibe7e577873c231a5b950a7224eb1a4136a4cd987
This commit is contained in:
parent
5ad29c50bb
commit
ca2e195a76
2 changed files with 4 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -310,3 +310,6 @@ __pycache__
|
|||
/utils/regtools/regtool
|
||||
/utils/regtools/swiss_knife
|
||||
/utils/regtools/tester_v1
|
||||
|
||||
# /utils/time-sync/
|
||||
/utils/time-sync/time-sync
|
||||
|
|
|
@ -11,7 +11,7 @@ clean:
|
|||
gcc ${CFLAGS} -c -o $@ $^
|
||||
|
||||
time-sync: ${OBJS}
|
||||
gcc ${CFLAGS} -lsgutils2 -o $@ $^
|
||||
gcc ${CFLAGS} -o $@ $^ -lsgutils2
|
||||
|
||||
install: time-sync
|
||||
cp time-sync /usr/local/bin/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue