Tag Archives: makefile

Template makefile.

I did this so many times during school that I just needed a quick Makefile, here it is. If you have any suggestions please feel free to make them! # Comments # @author gnucom.cc CC=gcc CPP=g++ SUS3=-D_POSIX_SOURCE -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600 HARDEN=-D_FORTIFY_SOURCE CFLAGS=-Wall -Werror -g -std=gnu99 -pedantic $(SUS3) $(HARDEN) LDFLAGS=   ALL=myprogram   all: $(ALL)   myprogram: [...]

Posted in Programming | Also tagged | Leave a comment