File: mk_djg.mak

package info (click to toggle)
arduino-ctags 5.8-arduino11-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,772 kB
  • sloc: ansic: 35,037; makefile: 132; sh: 23
file content (18 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# $Id: mk_djg.mak 307 2003-03-31 04:53:22Z darren $
#
# The most simplistic Makefile, for DJGPP Version 2 on Windows
#
# Rather than using this makefile, it is preferable to run "configure", then
# "make" under BASH on DJGPP (i.e. the standard means of building a package on
# Unix), but you have to have a fuller complement of DJGPP packages installed
# to do this.

include source.mak

CFLAGS	= -O2 -Wall -DMSDOS

ctags.exe: $(SOURCES)
	gcc $(CFLAGS) -s -o ctags.exe $(SOURCES) -lpc

clean:
	del ctags.exe