Skip to content

Commit

Permalink
templates makefiles: use short library syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jackburton79 committed Oct 30, 2023
1 parent 85393e1 commit 1c906c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/templates/BApplication with window/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RSRCS =
# - if your library does not follow the standard library naming scheme,
# you need to specify the path to the library and it's name.
# (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
LIBS = /boot/system/develop/lib/libbe.so
LIBS = be

# Specify additional paths to directories following the standard libXXX.so
# or libXXX.a naming scheme. You can specify full paths or paths relative
Expand Down
2 changes: 1 addition & 1 deletion data/templates/BApplication with windows and menu/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RSRCS = Resources.rsrc
# - if your library does not follow the standard library naming scheme,
# you need to specify the path to the library and it's name.
# (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
LIBS = /boot/system/develop/lib/libbe.so
LIBS = be

# Specify additional paths to directories following the standard libXXX.so
# or libXXX.a naming scheme. You can specify full paths or paths relative
Expand Down
2 changes: 1 addition & 1 deletion data/templates/Console application/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ RSRCS =
# - if your library does not follow the standard library naming scheme,
# you need to specify the path to the library and it's name.
# (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
LIBS = /boot/system/develop/lib/libbe.so $(STDCPPLIBS)
LIBS = be $(STDCPPLIBS)

# Specify additional paths to directories following the standard libXXX.so
# or libXXX.a naming scheme. You can specify full paths or paths relative
Expand Down

0 comments on commit 1c906c1

Please sign in to comment.