1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-11-26 01:16:16 +02:00

gencat/libs.*: renamed to comp.*

This commit is contained in:
Werner Almesberger 2012-06-25 21:14:48 -03:00
parent 823b85f900
commit 748a01fb9a
5 changed files with 9 additions and 9 deletions

View File

@ -11,7 +11,7 @@
PREFIX ?= /usr/local PREFIX ?= /usr/local
OBJS = gencat.o tree.o libs.o pdf.o OBJS = gencat.o tree.o comp.o pdf.o
SHELL = /bin/bash SHELL = /bin/bash
CFLAGS = -Wall -g CFLAGS = -Wall -g

View File

@ -1,5 +1,5 @@
/* /*
* libs.c - Component libraries * comp.c - Component libraries
* *
* Copyright 2012 by Werner Almesberger * Copyright 2012 by Werner Almesberger
* *
@ -18,7 +18,7 @@
#include <dirent.h> #include <dirent.h>
#include "util.h" #include "util.h"
#include "libs.h" #include "comp.h"
struct entry { struct entry {

View File

@ -1,5 +1,5 @@
/* /*
* libs.h - Component libraries * comp.h - Component libraries
* *
* Copyright 2012 by Werner Almesberger * Copyright 2012 by Werner Almesberger
* *
@ -9,8 +9,8 @@
* (at your option) any later version. * (at your option) any later version.
*/ */
#ifndef LIBS_H #ifndef COMP_H
#define LIBS_H #define COMP_H
struct name { struct name {
const char *s; const char *s;
@ -21,4 +21,4 @@ const char *lookup_sym(const char *name, const struct name **names, int *units);
void add_lib(const char *path); void add_lib(const char *path);
void add_libdir(const char *path); void add_libdir(const char *path);
#endif /* !LIBS_H */ #endif /* !COMP_H */

View File

@ -16,7 +16,7 @@
#include <string.h> #include <string.h>
#include "tree.h" #include "tree.h"
#include "libs.h" #include "comp.h"
#include "pdf.h" #include "pdf.h"
#include "gencat.h" #include "gencat.h"

View File

@ -12,7 +12,7 @@
#ifndef TREE_H #ifndef TREE_H
#define TREE_H #define TREE_H
#include "libs.h" #include "comp.h"
struct line { struct line {