[L4alpha-cvscommit] CVS: L4Alpha-tools/pvc Makefile,1.1,1.2
Status: Beta
Brought to you by:
dpotts
|
From: Daniel P. <dp...@us...> - 2001-11-12 05:16:45
|
Update of /cvsroot/l4alpha/L4Alpha-tools/pvc
In directory usw-pr-cvs1:/tmp/cvs-serv10680/pvc
Modified Files:
Makefile
Log Message:
Added fixes from brett's tree for more friendly compiles. His comment is as follows:
Added an install target.
Also fixed standard ('all') target so you can actually type make more then once withit working.
Removed references to Simons and Dans home directories.
Changed C flags so it will compile using gcc (note the code uses a variable called 'inline' so its not going to compile on most compilers).
Index: Makefile
===================================================================
RCS file: /cvsroot/l4alpha/L4Alpha-tools/pvc/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile 2000/11/27 04:22:13 1.1
--- Makefile 2001/11/12 05:16:39 1.2
***************
*** 7,11 ****
#TOOLBOX = $(EB_TOOLBOX)
! CFLAGS = -DEV6 -g3
LINT = /usr/bin/lint
--- 7,11 ----
#TOOLBOX = $(EB_TOOLBOX)
! CFLAGS = -DEV6 -g3 -ansi
LINT = /usr/bin/lint
***************
*** 29,32 ****
--- 29,33 ----
chmod 775 ../bin/pvc
+ MAKEFILE=Makefile
depend: $(SFILES)
makedepend -f $(MAKEFILE) -- $(CFLAGS) -- $(SFILES)
|