File: Makefile.vc

package info (click to toggle)
pcf2bdf 1.04-2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 124 kB
  • ctags: 176
  • sloc: cpp: 818; makefile: 12
file content (13 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile for pcf2bdf (Visual C++ 5.0)  -*- makefile -*-

CXX		= cl
CXXFLAGS	= /O2
RM		= del

all:		pcf2bdf

pcf2bdf:	pcf2bdf.cc
	$(CXX) $(CXXFLAGS) /Tppcf2bdf.cc

clean:
	-$(RM) pcf2bdf pcf2bdf.exe pcf2bdf.obj *~