Update Makefile
This commit is contained in:
parent
93dd1660d2
commit
539bb083fa
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -14,6 +14,7 @@ endif
|
||||||
|
|
||||||
NAME = amiberry
|
NAME = amiberry
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
|
CC = gcc
|
||||||
CXX = g++
|
CXX = g++
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
|
|
||||||
|
@ -228,7 +229,7 @@ src/trace.o: src/trace.c
|
||||||
$(CC) $(MORE_CFLAGS) -c src/trace.c -o src/trace.o
|
$(CC) $(MORE_CFLAGS) -c src/trace.c -o src/trace.o
|
||||||
|
|
||||||
$(PROG): $(OBJS)
|
$(PROG): $(OBJS)
|
||||||
$(CXX) -o $(PROG) $(OBJS) $(LDFLAGS)
|
$(CXX) $(CXXFLAGS) -o $(PROG) $(OBJS) $(LDFLAGS)
|
||||||
ifndef DEBUG
|
ifndef DEBUG
|
||||||
$(STRIP) $(PROG)
|
$(STRIP) $(PROG)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue