X-Git-Url: http://git.thejh.net/?p=libjh.git;a=blobdiff_plain;f=compile.sh;fp=compile.sh;h=0768dafc1d835714307288b0a5d882902c23997b;hp=e770e59eface98a6f7484f4631132e3b569b4006;hb=e40d0aaafde6a9d5276b2c3dfc72b933fc73fe06;hpb=3b41b5c082c2c3719fbbcfc4e381fee04879dc1d diff --git a/compile.sh b/compile.sh index e770e59..0768daf 100755 --- a/compile.sh +++ b/compile.sh @@ -39,7 +39,7 @@ for source_file in $(ls|grep '\.c$'); do echo '' echo '' -done > gen/libjh.h +done > gen/jh.h # preprocess all source files for source_file in $(ls|grep '\.c$'); do @@ -47,7 +47,7 @@ for source_file in $(ls|grep '\.c$'); do source_name="$(sed 's|\.c$||' <<< "$source_file")" # do our own preprocessing - echo '#include "../libjh.h"' > "gen/realc/$source_name.c" + echo '#include "../jh.h"' > "gen/realc/$source_name.c" cat "$source_file" | grep -v '^PUBLIC_CONST ' | @@ -79,4 +79,4 @@ done # ... and link! cd gen/obj $CC -shared -Wl,-soname,libjh.so -o ../libjh.so $(ls) -cd ../.. \ No newline at end of file +cd ../..