home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_58 / makefile < prev    next >
Encoding:
Makefile  |  1995-01-01  |  153 b   |  14 lines

  1. CFLAGS    = -g -Wall 
  2. L    = -lpc -lg -lm 
  3. CC = gcc
  4.  
  5. .c.o:
  6.     $(CC) $(CFLAGS) -c $<
  7.  
  8. OBJS    = \
  9.     main.o wave.o sb.o
  10.  
  11. prog : $(OBJS)
  12.     $(CC) -o sound $(OBJS) $(L) 
  13.  
  14.