commit 922c2d71fbaedc268305bcbd87778ee31fdf5f55
parent 2d11bb12bc35afbe55c3656f10bc7d19475c1746
Author: Michael Savage <mikejsavage@gmail.com>
Date: Mon, 30 Oct 2017 23:04:02 +0200
Nothing uses obj anymore
Diffstat:
1 file changed, 0 insertions(+), 6 deletions(-)
diff --git a/scripts/gen_makefile.lua b/scripts/gen_makefile.lua
@@ -190,12 +190,6 @@ function bin( bin_name, objs, libs )
printf( "clean::\n\trm -f %s", bin_path )
end
-function obj( obj_name, source )
- local obj_path = ( "%s/%s%s" ):format( dir, obj_name, obj_suffix )
- printh( "OBJS += %s", obj_path )
- printf( "%s: %s", obj_path, source )
-end
-
function lib( lib_name, objs )
assert( type( objs ) == "table", "objs should be a table" )
printf( "%s/%s%s%s: %s", dir, lib_prefix, lib_name, lib_suffix, join( objs, obj_suffix ) )