comparison libdha/Makefile @ 22567:d68e5e8609a7

Remove commented out superfluous lines.
author diego
date Wed, 14 Mar 2007 22:40:10 +0000
parents 206456738325
children ad8f3d791bca
comparison
equal deleted inserted replaced
22566:206456738325 22567:d68e5e8609a7
1 # makefile
2
3 include ../config.mak 1 include ../config.mak
4 2
5 MAJOR_VERSION = 1 3 MAJOR_VERSION = 1
6 MINOR_VERSION = 0 4 MINOR_VERSION = 0
7 VERSION = $(MAJOR_VERSION).$(MINOR_VERSION) 5 VERSION = $(MAJOR_VERSION).$(MINOR_VERSION)
10 ifeq ($(TARGET_OS),CYGWIN) 8 ifeq ($(TARGET_OS),CYGWIN)
11 SHORTNAME = libdha.dll 9 SHORTNAME = libdha.dll
12 else 10 else
13 SHORTNAME = libdha.so.$(MAJOR_VERSION) 11 SHORTNAME = libdha.so.$(MAJOR_VERSION)
14 SONAME_FLAGS = -Wl,-soname,$(SHORTNAME) 12 SONAME_FLAGS = -Wl,-soname,$(SHORTNAME)
15 #SHORTNAME = libdha.so
16 VSHORTNAME = libdha.so 13 VSHORTNAME = libdha.so
17 endif 14 endif
18 ifeq ($(TARGET_WIN32),yes) 15 ifeq ($(TARGET_WIN32),yes)
19 LIBNAME = libdha.a 16 LIBNAME = libdha.a
20 SHORTNAME = libdha.a 17 SHORTNAME = libdha.a
43 ifneq ($(wildcard svgalib_helper),) 40 ifneq ($(wildcard svgalib_helper),)
44 CFLAGS += -DDEV_SVGA=\"/dev/svga\" -DCONFIG_SVGAHELPER -Isvgalib_helper/ 41 CFLAGS += -DDEV_SVGA=\"/dev/svga\" -DCONFIG_SVGAHELPER -Isvgalib_helper/
45 endif 42 endif
46 43
47 .SUFFIXES: .c .o 44 .SUFFIXES: .c .o
48
49 # .PHONY: all clean
50 45
51 .c.o: pci_names.c 46 .c.o: pci_names.c
52 $(CC) -c $(CFLAGS) -o $@ $< 47 $(CC) -c $(CFLAGS) -o $@ $<
53 48
54 $(LIBNAME): $(OBJS) 49 $(LIBNAME): $(OBJS)