我正在寫一個模擬器程序,我需要一個圖形庫。我有4個文件,圖形庫GLWF3安裝在我的includes文件夾中。我正在使用MacOs優勝美地。我無法弄清楚如何讓makefile工作,但包含glfw3庫。提前致謝! 還要注意的唯一文件包括GLWF3是graphics.h中 的Makefile爲GLFW3寫一個make文件
OBJ = graphics.o chip8.o
emulator: $(OBJ)
gcc -o emulator $(OBJ)
graphics.o: graphics.c graphics.h
gcc -c graphics.c
chip8.o: chip8.c chip8.h
gcc -c chip8.c
clean:
rm -f $(OBJ) emulator
如果你只是用GCC本身,而不是在makefile使用你會如何做呢?對於初學者來說,在makefile中以相同的方式執行。 –