home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / apport / examples / Makefile < prev    next >
Encoding:
Makefile  |  2006-08-09  |  240 b   |  15 lines

  1. CFLAGS= -g -Wall -W -fPIC
  2.  
  3. LIBNAME=apport
  4. LIB=lib$(LIBNAME).so
  5.  
  6. ifeq ($(AGENTPATH),)
  7. AGENTPATH=/usr/share/apport/apport
  8. endif
  9.  
  10. $(LIB): lib$(LIBNAME).c
  11.     $(CC) $(CFLAGS) -DAGENTPATH=\"$(AGENTPATH)\" -shared $^ -o $@
  12.  
  13. clean:
  14.     rm -f *.o $(LIB)
  15.