build.h 370 B

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