File: Imakefile

package info (click to toggle)
fvwm95 2.0.43ba-15
  • links: PTS
  • area: main
  • in suites: potato
  • size: 6,356 kB
  • ctags: 4,759
  • sloc: ansic: 46,398; makefile: 1,586; sh: 782; perl: 328
file content (48 lines) | stat: -rw-r--r-- 751 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
/*
 * Imakefile for fvwm 2.0 -- FvwmScript
 *
 * The procedure is: xmkmf; make Makefiles; make all
 *		make install; make install.man
 */


#define IHaveSubdirs

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

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

BUILDSUBDIRS = Widgets
SAMPLESUBDIRS = Scripts Scripts/some_nice_icons

SUBDIRS = $(BUILDSUBDIRS) $(SAMPLESUBDIRS)

MakeSubdirs($(SUBDIRS))

DependSubdirs($(BUILDSUBDIRS))

FVWM_SRCDIR = ../..
#include "../../Fvwm.tmpl"

SRCS = libyywrap.c lex.yy.c y.tab.c Instructions.c FvwmScript.c

OBJS = libyywrap.o lex.yy.o y.tab.o Instructions.o FvwmScript.o

LOCAL_LIBRARIES = $(FVWM_LIBS) $(XLIB) ./Widgets/libWidgets.a

FvwmModuleTarget(FvwmScript)