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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
# Generated automatically from Makefile.common.in by configure.
#
# Copyright (c) 1998, Guylhem AZNAR <guylhem@oeil.qc.ca>
#
# Generated automatically from Makefile.defines.in by configure.
#
# Copyright (c) 1998, Guylhem AZNAR <guylhem@oeil.qc.ca>
#
CC = gcc
CCFLAGS = -O2
# -march=pentiumpro -mcpu=pentiumpro
RANLIB = ranlib
AR = ar clq
CP = /bin/cp
MV = /bin/mv
RM = /bin/rm
RMF = /bin/rm -f
MKDIR = /bin/mkdir
STRIP = /usr/bin/strip
YACC = @YACC@
LEX = @LEX@
YACCFLAGS = -d
LEXFLAGS =
INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = /usr/bin/install -c -s -m 755
INSTALL_DATA = /usr/bin/install -c -m 644
INCS_X = -I/usr/X11R6/include
INCS_XPM =
INCLUDES = $(INCS_X) $(INCS_XPM)
LIBS_X = -L/usr/X11R6/lib -lX11 -lSM -lICE -L/usr/X11/lib -lXpm -lXext
LIBS_XPM =
LIBS_JPEG = -ljpeg
LIBS_XEXTS =
LIBS_AFTERSTEP =
LIBRARIES = $(LIBS_X) $(LIBS_XPM) $(LIBS_JPEG) $(LIBS_XEXTS) $(LIBS_AFTERSTEP)
AFTER_BIN_DIR = /usr/local/bin
AFTER_MAN_DIR = /usr/local/man/man1
AFTER_DOC_DIR = /usr/local/share/afterstep/doc
AFTER_SHAREDIR = /usr/local/share/afterstep
GNUSTEP = ~/GNUstep
GNUSTEPLIB = ~/GNUstep/Library
AFTER_DIR = ~/GNUstep/Library/AfterStep
AFTER_SAVE = ~/GNUstep/Library/AfterStep/.workspace_state
AFTER_NONCF = ~/GNUstep/Library/AfterStep/non-configurable
#
# End of Make.defines
#
all: $(PROG)
install: $(PROG)
$(STRIP) $(PROG)
$(INSTALL_PROGRAM) $(PROG) $(AFTER_BIN_DIR)
install.man:
$(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1x
uninstall:
$(RMF) $(AFTER_BIN_DIR)/$(PROG)
$(RMF) $(AFTER_MAN_DIR)/$(PROG).1x
clean:
$(RMF) $(PROG) *.o *~ *% *.bak \#* core
distclean:
$(RMF) $(PROG) config.cache config.log config.status Makefile.bak Makefile config.h configure.h *.o *~ *% *.bak \#* core autoconf/Makefile.common autoconf/Makefile.common.lib autoconf/Makefile.defines
indent:
SRCS=`echo "$(OBJS) " | sed "s/.o /.c /g"`; \
for i in $$SRCS; do \
if (indent < $$i > /tmp/$$i); then \
mv /tmp/$$i $$i; \
fi; \
done
$(PROG): $(OBJS)
$(CC) $(OBJS) $(LIBRARIES) $(EXTRA_LIBRARIES) -o $(@)
.c.o:
$(CC) $(CCFLAGS) $(EXTRA_DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) -c $*.c
#
# End of Make.common
#
|