1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-10-01 12:40:44 +03:00

gencat/comp.*: renamed to tree.*

This commit is contained in:
Werner Almesberger 2012-06-25 21:12:26 -03:00
parent e832845a02
commit 823b85f900
5 changed files with 9 additions and 9 deletions

View File

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

View File

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

View File

@ -15,7 +15,7 @@
#include <sys/types.h>
#include "gencat.h"
#include "comp.h"
#include "tree.h"
#include "pdf.h"

View File

@ -1,5 +1,5 @@
/*
* comp.c - Component hierarchy
* tree.c - Component hierarchy
*
* Copyright 2012 by Werner Almesberger
*
@ -16,7 +16,7 @@
#include <ctype.h>
#include "util.h"
#include "comp.h"
#include "tree.h"
struct node *tree = NULL;

View File

@ -1,5 +1,5 @@
/*
* comp.h - Component hierarchy
* tree.h - Component hierarchy
*
* Copyright 2012 by Werner Almesberger
*
@ -9,8 +9,8 @@
* (at your option) any later version.
*/
#ifndef COMP_H
#define COMP_H
#ifndef TREE_H
#define TREE_H
#include "libs.h"
@ -45,4 +45,4 @@ void set_libs(struct node *node,
void dump_tree(void);
void dump_comp(void);
#endif /* !COMP_H */
#endif /* !TREE_H */