makefile.defs.linux.barren 572 B

1234567891011121314151617181920212223242526
  1. # File: makefile.defs.linux.barren
  2. # System: Linux without GUI, network, graphics, and sound
  3. # Paul Boersma, 3 August 2018
  4. CC = gcc -std=gnu99
  5. CXX = g++ -std=c++17
  6. CFLAGS = -DNO_GRAPHICS -DNO_NETWORK -D_FILE_OFFSET_BITS=64 -DUNIX -Dlinux -Werror=missing-prototypes -Werror=implicit -Wreturn-type -Wunused -Wunused-parameter -Wuninitialized -O3 -g1 -pthread
  7. CXXFLAGS = $(CFLAGS) -Wshadow
  8. LINK = g++
  9. EXECUTABLE = praat_barren
  10. LIBS = -lm -lpthread -static -static-libgcc -static-libstdc++
  11. AR = ar
  12. RANLIB = ls
  13. ICON =
  14. MAIN_ICON =
  15. INSTALL = cp ./praat_barren /usr/bin