Makefile
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:0k
源码类别:

OpenGL

开发平台:

Visual C++

  1. CXX = g++
  2. CXXFLAGS = -O3 -Wall # -msse -msse2
  3. INSTALL = /usr/bin/install
  4. # tools will be installed into
  5. prefix = /usr/local
  6. exec_prefix = $(prefix)
  7. bindir = $(exec_prefix)/bin
  8. all: scattersim
  9. scattersim: scattersim.cpp
  10. $(CXX) $(CXXFLAGS) -I../.. scattersim.cpp -o scattersim -lpng
  11. clean:
  12. rm -f   *.o
  13. install:
  14. $(INSTALL) scattersim $(bindir)
  15. uninstall:
  16. rm -f $(bindir)/scattersim