File: Makefile.dos

package info (click to toggle)
hexcompare 1.0.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: ansic: 610; makefile: 17
file content (18 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# This is a Makefile for building hexcompare on DOS using DJGPP.
#
# Requirements:
#  * DJGPP v2.04 or newer
#  * the pdcurses library
#

CFLAGS = -O3 -Wall -Wextra -pedantic -Wformat-security -std=gnu89

all: hexcomp.exe

hexcomp.exe: main.c gui.c
	$(CC) $(CFLAGS) -o hexcomp.exe main.c gui.c -l:pdcurses.a
	upx -9 hexcomp.exe

clean:
	del hexcomp.exe