mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-19 07:01:53 +02:00
gencat/comp.*: renamed to tree.*
This commit is contained in:
parent
e832845a02
commit
823b85f900
@ -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
|
||||
|
@ -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"
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "gencat.h"
|
||||
#include "comp.h"
|
||||
#include "tree.h"
|
||||
#include "pdf.h"
|
||||
|
||||
|
||||
|
@ -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;
|
@ -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 */
|
Loading…
Reference in New Issue
Block a user