Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jun 2005 06:07:45 GMT
From:      soc-tyler <soc-tyler@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 79247 for review
Message-ID:  <200506300607.j5U67j2a084408@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=79247

Change 79247 by soc-tyler@soc-tyler_launchd on 2005/06/30 06:07:34

	Modify launchctl(1)'s Makefile to build and link against liblaunch, add liblaunch.c as well

Affected files ...

.. //depot/projects/soc2005/launchd/launchctl/Makefile#2 edit
.. //depot/projects/soc2005/launchd/launchctl/launchctl.c#3 edit
.. //depot/projects/soc2005/launchd/liblaunch.c#1 add

Differences ...

==== //depot/projects/soc2005/launchd/launchctl/Makefile#2 (text+ko) ====

@@ -2,9 +2,14 @@
 # $FreeBSD$
 
 PROG=	launchctl
+SRCS=	launchctl.c liblaunch.c
 MAINTAINER= tyler@tamu.edu
+LAUNCHD=  ${.CURDIR}/../
 
-CFLAGS+= -Wall -W -Wshadow -Wpadded -I../includes
+CFLAGS+= -g -Wall -W -Wshadow -Wpadded -I${LAUNCHD}/includes
 LDADD+=	-lreadline
 
+.PATH: ${LAUNCHD}
+
+
 .include <bsd.prog.mk>

==== //depot/projects/soc2005/launchd/launchctl/launchctl.c#3 (text+ko) ====

@@ -1,7 +1,7 @@
 /*
  * $FreeBSD$
  *
- * Copyright © 2005 R. Tyler Ballance <tyler@tamu.edu> All rights reserved.
+ * Copyright (c) 2005 R. Tyler Ballance <tyler@tamu.edu> All rights reserved.
  *
  *	Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200506300607.j5U67j2a084408>