From: <to...@us...> - 2004-01-14 18:10:58
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Tools/IndexHelp In directory sc8-pr-cvs1:/tmp/cvs-serv31394/!OsLib/Tools/IndexHelp Modified Files: Tag: unix-build .cvsignore IndexHelp.c Added Files: Tag: unix-build GNUmakefile Log Message: Unix Build --- NEW FILE: GNUmakefile --- # # Makefile for IndexHelp for UNIX. # #------------------------------------------------------------------------ #target-specific macros TARGET = IndexHelp MODULES = ${TARGET} os osgbpb osfile x kernel unix INCLUDES = -I.. -I../support DEFINES = -DUNIX -DEXECUTE_ON_UNIX -D__swi VPATH = ../support ../oslib/unix #------------------------------------------------------------------------ # tools CC = gcc CFLAGS = -Wall LD = gcc LDFLAGS = CP = cp -f RM = rm -f OBJS = $(patsubst %,%.o,${MODULES}) #------------------------------------------------------------------------ #targets all: ${TARGET} ${TARGET}: ${OBJS} ${LD} ${LDFLAGS} -o $@ ${OBJS} ${CP} $@ ../../bin .PHONY: clean clean: - ${RM} ${OBJS} ${TARGET} #------------------------------------------------------------------------ # general rules: .SUFFIXES: .o .c .c.o: ${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -o $@ -c $< #------------------------------------------------------------------------ Index: .cvsignore =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Tools/IndexHelp/.cvsignore,v retrieving revision 1.2 retrieving revision 1.2.4.1 diff -C2 -d -r1.2 -r1.2.4.1 *** .cvsignore 27 Nov 2002 22:11:01 -0000 1.2 --- .cvsignore 14 Jan 2004 18:10:55 -0000 1.2.4.1 *************** *** 1 **** --- 1,3 ---- o + IndexHelp + Index: IndexHelp.c =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Tools/IndexHelp/IndexHelp.c,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** IndexHelp.c 29 Dec 2003 11:40:21 -0000 1.5 --- IndexHelp.c 14 Jan 2004 18:10:55 -0000 1.5.2.1 *************** *** 55,59 **** /* From OSLibSupport */ ! #include "X.h" #include "trace.h" --- 55,59 ---- /* From OSLibSupport */ ! #include "x.h" #include "trace.h" |