better groups
This commit is contained in:
parent
ffead16130
commit
68b2ed4783
2 changed files with 5 additions and 3 deletions
|
@ -1,11 +1,12 @@
|
|||
CC = gcc
|
||||
CFLAGS = -std=c11 -pedantic
|
||||
LDFLAGS =
|
||||
RM = rm
|
||||
|
||||
SOURCES = $(wildcard src/*.c)
|
||||
OBJETS = $(patsubst %.c,%.c.o,$(notdir $(SOURCES)))
|
||||
|
||||
CFLAGS = -std=c11 -pedantic
|
||||
LDFLAGS =
|
||||
|
||||
EXE = example
|
||||
EXE_EXT = out
|
||||
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
CXX = g++
|
||||
CXXFLAGS = --std=c++11
|
||||
RM = rm
|
||||
|
||||
SOURCES = $(wildcard src/*.cpp)
|
||||
OBJETS = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES)))
|
||||
|
||||
CXXFLAGS = --std=c++11
|
||||
|
||||
EXE = example
|
||||
EXE_EXT = out
|
||||
|
||||
|
|
Loading…
Reference in a new issue