[Winbash-checkins] CVS: winbash/tests Makefile,NONE,1.1
Brought to you by:
enricobrunetta,
xks
From: Enrico B. <enr...@us...> - 2002-03-16 02:00:28
|
Update of /cvsroot/winbash/winbash/tests In directory usw-pr-cvs1:/tmp/cvs-serv21445 Added Files: Makefile Log Message: Added makefile to compile recho --- NEW FILE: Makefile --- # # This Makefile for building builtins.lib is in -*- text -*- for Emacs. # # CC=cl.exe -nologo MAKE_LIB_COMMAND=lib.exe -nologo $^ -out:$@ SHELL = /bin/sh RM = rm -f CP = cp CPPDEFS = -DWIN32 -D_WINDOWS -D__NT_VC__ -DHAVE_STRING_H -D_STDLIB_H_ CPPFLAGS += -I. CPPFLAGS += -I../lib CPPFLAGS += -I../dum_inc CPPFLAGS += -I../ CPPFLAGS += $(CPPDEFS) CFLAGS = -MT ifdef RELEASE CFLAGS += -O2 else CFLAGS += -Od -Zi -Fdbuiltins.pdb CPPFLAGS += -D_DEBUG endif .SUFFIXES: .SUFFIXES: .c .obj # How to make a .obj file from a .def file. recho.exe: ../support/recho.c $(CC) $(CPPFLAGS) $(CPPDEFS) $(CFLAGS) -o $@ $< clean: $(RM) recho.obj recho.exe recho.ilk recho.pdb |