File: Makefile.djg

package info (click to toggle)
exuberant-ctags 1%3A2.3.2-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 452 kB
  • ctags: 645
  • sloc: ansic: 4,625; makefile: 130; sh: 33
file content (10 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# The most simplistic Makefile, for DJGPP on MS-DOS

SOURCES	= entry.c get.c main.c options.c parse.c read.c sort.c
CFLAGS	= -O4 -Wall -DMSDOS

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

clean:
	del ctags.exe