File: Makefile

package info (click to toggle)
ripmime 1.4.0.10.debian.1-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,308 kB
  • sloc: ansic: 8,761; makefile: 59; sh: 37
file content (17 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


# Possible platforms are SUN, HPUX, DEC, SGI, AIX, Linux and MSDOS
# The main definitions are for 32/16 bits and for byte order, the 
# default is big endian.  You can do -D__TNEF_BYTE_ORDER 1234 for little
# endian
PLATFORM=-D___TNEF_BYTE_ORDER=4321 
CFLAGS=-Wall -g -O2 -I. $(shell dpkg-buildflags --get CFLAGS)

default: config.h tnef.h tnef.c
	$(CC) $(CFLAGS) $(PLATFORM) -c tnef.c
	
lib: tnef.o
	ar ruvs tnef.a tnef.o

clean:
	rm -f *.o *.~[ch]