mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-02-18 12:04:42 +02:00
gencat/comp.*: renamed to tree.*
This commit is contained in:
parent
e832845a02
commit
823b85f900
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
|
|
||||||
OBJS = gencat.o comp.o libs.o pdf.o
|
OBJS = gencat.o tree.o libs.o pdf.o
|
||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
CFLAGS = -Wall -g
|
CFLAGS = -Wall -g
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "comp.h"
|
#include "tree.h"
|
||||||
#include "libs.h"
|
#include "libs.h"
|
||||||
#include "pdf.h"
|
#include "pdf.h"
|
||||||
#include "gencat.h"
|
#include "gencat.h"
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include "gencat.h"
|
#include "gencat.h"
|
||||||
#include "comp.h"
|
#include "tree.h"
|
||||||
#include "pdf.h"
|
#include "pdf.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* comp.c - Component hierarchy
|
* tree.c - Component hierarchy
|
||||||
*
|
*
|
||||||
* Copyright 2012 by Werner Almesberger
|
* Copyright 2012 by Werner Almesberger
|
||||||
*
|
*
|
||||||
@ -16,7 +16,7 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "comp.h"
|
#include "tree.h"
|
||||||
|
|
||||||
|
|
||||||
struct node *tree = NULL;
|
struct node *tree = NULL;
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* comp.h - Component hierarchy
|
* tree.h - Component hierarchy
|
||||||
*
|
*
|
||||||
* 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 COMP_H
|
#ifndef TREE_H
|
||||||
#define COMP_H
|
#define TREE_H
|
||||||
|
|
||||||
#include "libs.h"
|
#include "libs.h"
|
||||||
|
|
||||||
@ -45,4 +45,4 @@ void set_libs(struct node *node,
|
|||||||
void dump_tree(void);
|
void dump_tree(void);
|
||||||
void dump_comp(void);
|
void dump_comp(void);
|
||||||
|
|
||||||
#endif /* !COMP_H */
|
#endif /* !TREE_H */
|
Loading…
x
Reference in New Issue
Block a user