Carton / apue2e

Source code for the examples in the book "Advanced Programming in the UNIX Environment"

Home Page:http://www.apuebook.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Instructions for Debian derivatives

  • Install required packages

      $ sudo apt-get install build-essential
    
  • Fork this repository

  • (Preferably) Build examples and APUE library

      $ make
    
  • Populate your own examples in local* subdirectories. For example:

      $ cd local
      $ $EDITOR local.c
    

    Please note that the main source filename must be same as the subdirectory name (i.e. local1/local1.c)

  • Build and run your example

      $ cd .. # chdir to top dir
      $ make
      $ local/local
    

About

Source code for the examples in the book "Advanced Programming in the UNIX Environment"

http://www.apuebook.com/


Languages

Language:C 85.9%Language:Makefile 12.5%Language:Awk 1.5%Language:Shell 0.1%