- Kai Germaschewski: ISDN update (including Makefiles)
[davej-history.git] / arch / sparc64 / solaris / Makefile
blobd3a2880d80b6ddfad78926c95482f6fa1c846e64
2 # Makefile for the Solaris binary emulation.
4 # Note! Dependencies are done automagically by 'make dep', which also
5 # removes any old dependencies. DON'T put your own dependencies here
6 # unless it's something special (ie not a .c file).
8 # Note 2! The CFLAGS definition is now in the main makefile...
10 ifeq ($(CONFIG_SOLARIS_EMUL),m)
11 CPPFLAGS = $(MODFLAGS)
12 endif
14 .S.s:
15 $(CPP) $(AFLAGS) $(CPPFLAGS) -ansi $< -o $*.s
17 .S.o:
18 $(CC) $(AFLAGS) $(CPPFLAGS) -ansi -c $< -o $*.o
20 list-multi := solaris.o
22 solaris-objs := entry64.o fs.o misc.o signal.o systbl.o socket.o \
23 ioctl.o ipc.o socksys.o timod.o
25 obj-$(CONFIG_SOLARIS_EMUL) += solaris.o
27 ifneq ($(CONFIG_SOLARIS_EMUL),y)
28 do_it_all:
29 endif
31 solaris.o: $(solaris-objs)
32 $(LD) -r -o $@ $(solaris-objs)
34 include $(TOPDIR)/Rules.make