Files
MemoryModule/example/DllLoader/Makefile
T
2013-03-12 01:02:10 +01:00

37 lines
533 B
Makefile

UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
ifndef PLATFORM
PLATFORM = i686
endif
CC = $(PLATFORM)-w64-mingw32-gcc
CXX = $(PLATFORM)-w64-mingw32-g++
LINK = $(PLATFORM)-w64-mingw32-ld
else
CC = gcc
CXX = g++
LINK = ld
endif
RM = rm
CFLAGS = -Wall -g
LDFLAGS =
ifdef UNICODE
CFLAGS += -DUNICODE -D_UNICODE
endif
OBJ = DllLoader.o ../../MemoryModule.o
DllLoader.exe: $(OBJ)
$(CC) $(LDFLAGS) -o DllLoader.exe $(OBJ)
%.o: %.cpp
$(CXX) $(CFLAGS) -c $<
%.o: %.cc
$(CC) $(CFLAGS) -c $<
clean:
$(RM) -rf $(OBJ) DllLoader.exe