Zaibon

Untitled

Jan 15th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. LIB=libshm.o
  2. LDFALGS=
  3. CCFLAGS=-Wall -L /home/zaibon/Desktop/lib -D COMPACQ
  4. CC=gcc $(CCFLAGS)
  5.  
  6. server: testlib.c libshm.o
  7. $(CC) -o server testlib.c libshm.o
  8.  
  9. client: testlib_client.c libshm.o
  10. $(CC) -o client testlib_client.c libshm.o
  11.  
  12. libshm.o: libshm.c libshm.h fctTrace.o
  13. $(CC) -c libshm.c fctTrace.o
  14.  
  15. fctTrace.o: fctTrace.c fctTrace.h
  16. $(CC) -c fctTrace.c
  17.  
  18. clean:
  19. rm -v *.o server client
Advertisement
Add Comment
Please, Sign In to add comment