Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.29 KB | None | 0 0
  1. PROGRAM = main
  2. SOURCE  = main.c
  3. OBJECT  = $(SOURCE:.c=.o)
  4. LIBDIR  = C:\Users\HP\Desktop\portaudio\build\msvc\Win32\Release
  5. LIBRARY = $(LIBDIR)/portaudio_x86.lib
  6.  
  7. $(PROGRAM): $(OBJECT)
  8.     $(CC) $(CFLAGS) -o $@ $(OBJECT) $(LDFLAGS) $(LIBRARY)
  9.  
  10.  
  11. main.o: main.c portaudio.h
  12.     gcc -c main.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement