build.h 397 B

12345678910
  1. #ifndef CCANLINT_BUILD_H
  2. #define CCANLINT_BUILD_H
  3. char *build_module(struct manifest *m, bool keep, enum compile_type ctype,
  4. char **errstr);
  5. char *build_submodule(struct manifest *m, const char *flags,
  6. enum compile_type ctype);
  7. void build_objects(struct manifest *m,
  8. bool keep, struct score *score, const char *flags,
  9. enum compile_type ctype);
  10. #endif /* CCANLINT_BUILD_H */