File: Makefile.in

package info (click to toggle)
gtkwave 1.3.12-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,508 kB
  • ctags: 2,306
  • sloc: ansic: 29,332; makefile: 121
file content (38 lines) | stat: -rw-r--r-- 1,265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
CC = @CC@
CFLAGS = -O2
AIXFLAGS = -bmaxdata:0x80000000
DEBUGS = -DDEBUG_FACILITIES -DDEBUG_PRINTF -DDEBUG_MALLOC -DSTRICT_VCD_ONLY -DDEBUG_MALLOC_LINES

SRCS = menu.c main.c status.c zoombuttons.c pagebuttons.c \
		fetchbuttons.c shiftbuttons.c pixmaps.c \
		timeentry.c currenttime.c wavewindow.c signalwindow.c \
		aet.c bitvec.c analyzer.c bsearch.c entry.c \
		tree.c file.c search.c discardbuttons.c \
		fgetdynamic.c showchange.c treesearch.c \
		markerbox.c print.c strace.c \
		simplereq.c help.c vcd.c debug.c rc.c \
		color.c hiersearch.c renderopt.c \
		rgb.c regex.c fonts.c lxt.c

OBJS = menu.o main.o status.o zoombuttons.o pagebuttons.o \
		fetchbuttons.o shiftbuttons.o pixmaps.o \
		timeentry.o currenttime.o wavewindow.o signalwindow.o \
		aet.o bitvec.o analyzer.o bsearch.o entry.o \
		tree.o file.o search.o discardbuttons.o \
		fgetdynamic.o showchange.o treesearch.o \
		markerbox.o print.o strace.o \
		simplereq.o help.o vcd.o debug.o rc.o \
		color.o hiersearch.o renderopt.o \
		rgb.o regex.o fonts.o lxt.o

all: 	gtkwave
	cp gtkwave ../bin

gtkwave:$(OBJS)
	$(CC) $(CFLAGS) `gtk-config --libs` $(OBJS) -o gtkwave

.c.o:	$(H_FILES)
	$(CC) $(CFLAGS) `gtk-config --cflags` -c -o $@ $<

clean: 
	rm -f core *.core *.o gtkwave ../bin/gtkwave