Skip to content

Commit

Permalink
Don't suppress warnings in (e)cl
Browse files Browse the repository at this point in the history
  • Loading branch information
olebole committed Apr 8, 2024
1 parent 4285d45 commit b02c7cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/cl/mkpkg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ relink:

$update libpkg.a

$set xflags = "$(xflags) -x"
$set xflags = "-c -x"
$omake cl.x
$omake globals.c <libc/iraf_libc.h> <libc/iraf_stdio.h>\
<libc/iraf_spp.h> construct.h eparam.h operand.h param.h task.h
Expand All @@ -48,7 +48,7 @@ install:
;

libpkg.a:
$set xflags = "$(xflags) -qx"
$set xflags = "-c -qx"

binop.c <libc/iraf_spp.h> <libc/iraf_libc.h>\
<libc/iraf_xnames.h> config.h operand.h errs.h
Expand Down
4 changes: 2 additions & 2 deletions pkg/ecl/mkpkg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ relink:

$update libpkg.a

$set xflags = "$(xflags) -x"
$set xflags = "-c -x"
$omake ecl.x
$omake globals.c <libc/iraf_libc.h> <libc/iraf_stdio.h>\
<libc/iraf_spp.h> construct.h eparam.h operand.h param.h task.h
Expand All @@ -53,7 +53,7 @@ install:
;

libpkg.a:
$set xflags = "$(xflags) -qx"
$set xflags = "-c -qx"

binop.c <libc/iraf_spp.h> <libc/iraf_libc.h>\
<libc/iraf_xnames.h> config.h operand.h errs.h
Expand Down

0 comments on commit b02c7cf

Please sign in to comment.