Makefile para SRGP


/ Published in: C
Save to your folder(s)



Copy this code and paste it in your HTML
  1. CC = gcc
  2.  
  3. GCCFLAGS = -fpcc-struct-return
  4. CFLAGS = -g
  5.  
  6. INCLUDE = -I/usr/include/srgp
  7.  
  8. LDLIBS = -lsrgp -lX11 -lm
  9. LDFLAGS = -L/usr/lib
  10.  
  11. $(PROG):
  12. $(CC) $(GCCFLAGS) $(INCLUDE) $(CFLAGS) $(PROG).c $(LDFLAGS) $(LDLIBS) -o $(PROG)

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.