Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. CC=gcc
  3. CFLAGS=-I .
  4. DEPS =file_processing.h NormalMultply.h -lpthread
  5. OBJ = main.o file_processing.o NormalMultply.o -lpthread
  6.  
  7. %.o: %.c $(DEPS)
  8. $(CC) -c -o $@ $< $(CFLAGS)
  9.  
  10. hellomake: $(OBJ)
  11. gcc -o $@ $^ $(CFLAGS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement