mirror of
https://github.com/NishiOwO/fvwm1.git
synced 2025-04-22 01:04:42 +00:00
34 lines
833 B
Plaintext
34 lines
833 B
Plaintext
/* Imakefile for xpmroot */
|
|
/* Thu Aug 5 11:21:36 MET DST 1993, mj@dfv.rwth-aachen.de */
|
|
|
|
/* setup is done entirely in configuration.h now! */
|
|
/* You should need to do much in here, excpt maybe add libraries */
|
|
|
|
/* I need to get the #define XPM from configuration.h if its in there, */
|
|
/* so that I can tell if I should include -lXpm */
|
|
#include <../configure.h>
|
|
|
|
COMPILER
|
|
|
|
#ifdef XPM
|
|
XPMLIB = XPMLIBRARY
|
|
|
|
DEPLIBS = $(DEPXLIB) ../libs/libfvwmlib.a
|
|
|
|
#ifdef AlphaArchitecture
|
|
LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -L../libs -lfvwmlib
|
|
#else
|
|
LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -L../libs -lfvwmlib
|
|
#endif
|
|
|
|
FVWM_BIN_DIR
|
|
LINTLIBS = $(LINTXLIB)
|
|
|
|
SRCS = xpmroot.c
|
|
OBJS = xpmroot.o
|
|
|
|
ComplexProgramTarget(xpmroot)
|
|
|
|
#endif
|
|
|