mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
b7fd15bf4b
svn path=/trunk/; revision=5234
77 lines
1.9 KiB
Makefile
77 lines
1.9 KiB
Makefile
#
|
|
# FreeLoader
|
|
# Copyright (C) 1999 - 2003 Brian Palmer <brianp@sginet.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
#
|
|
|
|
|
|
# Windows is default host environment
|
|
ifeq ($(HOST),)
|
|
HOST = mingw32-windows
|
|
endif
|
|
|
|
#
|
|
# Choose various options
|
|
#
|
|
ifeq ($(HOST),mingw32-linux)
|
|
RM = rm -f
|
|
CP = cp -f
|
|
MKDIR = mkdir
|
|
SEP = /
|
|
CC = mingw32-gcc
|
|
LD = mingw32-ld
|
|
WINDRES = mingw32-windres
|
|
else
|
|
RM = cmd /C del
|
|
CP = copy /Y
|
|
MKDIR = md
|
|
SEP = \$(EMPTY_VAR)
|
|
CC = gcc
|
|
LD = ld
|
|
RM = cmd /C del
|
|
WINDRES = windres
|
|
endif
|
|
|
|
FLAGS = -Wall
|
|
|
|
OBJS = rs232.o fdebug.o fdebug.res
|
|
|
|
.PHONY : clean
|
|
|
|
all: fdebug.exe
|
|
|
|
fdebug.exe: $(OBJS)
|
|
@echo ===================================================== LINKING fdebug
|
|
$(CC) $(FLAGS) -o fdebug.exe $(OBJS) -lgdi32 -lcomdlg32 -Wl,--subsystem,windows
|
|
|
|
fdebug.res: fdebug.rc resource.h
|
|
@echo ===================================================== Compiling $*
|
|
$(WINDRES) -o fdebug.res fdebug.rc -O coff
|
|
|
|
fdebug.o: fdebug.c rs232.h
|
|
@echo ===================================================== Compiling $*
|
|
$(CC) $(FLAGS) -o fdebug.o -c fdebug.c
|
|
|
|
rs232.o: rs232.c rs232.h
|
|
@echo ===================================================== Compiling $*
|
|
$(CC) $(FLAGS) -o rs232.o -c rs232.c
|
|
|
|
clean:
|
|
@-$(RM) *.o
|
|
@-$(RM) *.res
|
|
@-$(RM) *.exe
|
|
@echo Clean ALL done.
|