File: Imakefile

package info (click to toggle)
fvwm95 2.0.43ba-22
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,904 kB
  • ctags: 4,760
  • sloc: ansic: 46,436; makefile: 1,589; sh: 780; perl: 328
file content (50 lines) | stat: -rw-r--r-- 716 bytes parent folder | download | duplicates (6)
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
39
40
41
42
43
44
45
46
47
48
49
50
/* 
 * Imakefile for fvwm 2.0 -- libfvwm2.a
 */

/*CDEBUGFLAGS = -O2 -m486 --bounds-checking -g -Wall --no-builtin -DDEBUG*/

SRCS = \
	Tools.c \
	CheckBox.c \
	HScrollBar.c \
	VScrollBar.c \
	ItemDraw.c \
	PushButton.c \
	RadioButton.c \
	TextField.c \
	PopupMenu.c \
	Rectangle.c \
	MiniScroll.c \
	Swallow.c \
	HDipstick.c \
	VDipstick.c \
	List.c \
	Menu.c \
	Widget.c

OBJS = \
	Tools.o \
	CheckBox.o \
	HScrollBar.o \
	VScrollBar.o \
	ItemDraw.o \
	PushButton.o \
	RadioButton.o \
	TextField.o \
	PopupMenu.o \
	Rectangle.o \
	MiniScroll.o \
	Swallow.o \
	HDipstick.o \
	VDipstick.o \
	List.o \
	Menu.o \
	Widget.o

LOCAL_LIBRARIES = $(FVWM_LIBS) $(XLIB)

NormalLibraryTarget(Widgets,$(OBJS))

DependTarget()