File: Makefile

package info (click to toggle)
ee 1%3A1.4.2-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 328 kB
  • ctags: 903
  • sloc: ansic: 8,148; sh: 215; makefile: 52
file content (20 lines) | stat: -rwxr-xr-x 421 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Don't use this for Debian, it's unnecessarily confusing and 
# doesn't compile with the correct options.
#
# If you really want to use the upstream make procedure, do
# 'make -f Makefile.upstream
#

DEFINES =  -DHAS_UNISTD  -DHAS_STDLIB -DHAS_CTYPE -DHAS_SYS_IOCTL -DHAS_SYS_WAIT   -DSLCT_HDR

all : ee

ee : ee.o
	$(CC) -o $@ $< -lcurses

ee.o : ee.c
	$(CC) -c $(CFLAGS) $(DEFINES) -o $@ $<

clean : 
	rm -f ee.o ee