## Makefile for EXE Info ## ## Copyright (C) 2008 Denver Gingerich ## ## The contents of this file can be redistributed and/or modified under the ## terms of the GNU General Public License as published by the Free ## Software Foundation, either version 3 of the License, or (at your ## option) any later version. ## ## This file 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, see http://www.gnu.org/licenses/. ##### CC=gcc all: exe_info.exe exe_info.exe: exe_info.o md5.o $(CC) -o exe_info.exe exe_info.o md5.o -mconsole -Llib -lbfd -liberty strip exe_info.exe exe_info.o: exe_info.c md5.h $(CC) -c exe_info.c md5.o: md5.c md5.h $(CC) -c md5.c clean: del exe_info.exe exe_info.o md5.o