Made it so that make install installs libsyn68k.a and syn68k_public.h. However, there's a chance that the libsyn68k.a that they install is broken.

This commit is contained in:
Clifford T. Matthews 2009-06-02 01:59:08 -06:00
parent ef27cd8214
commit dc8eb02d33
2 changed files with 6 additions and 2 deletions

1
runtime/.gitignore vendored
View File

@ -2,3 +2,4 @@ mapindex.c
mapinfo.c
profileinfo.gz
syn68k.c
.deps

View File

@ -1,10 +1,13 @@
lib_LIBRARIES = libsyn68k.a
include_HEADERS = ../include/syn68k_public.h
host_native=@HOST_NATIVE@
SYN68K_CFLAGS=@SYN68K_CFLAGS@
CLEANUP=@CLEANUP@
OPTIMIZE=@OPTIMIZE@
CFLAGS += -DRUNTIME
AM_CFLAGS = -DRUNTIME
LOCAL_INCLUDES =
@ -16,7 +19,7 @@ LOCAL_CFLAGS = -DRUNTIME -Iinclude
all: libsyn68k.a
.c.o:
$(CC) $(CFLAGS) -c $(LOCAL_INCLUDES) $< -o $@
$(CC) $(AM_CFLAGS) -c $(LOCAL_INCLUDES) $< -o $@
OBJS = block.o diagnostics.o hash.o rangetree.o translate.o alloc.o \
blockinfo.o trap.o destroyblock.o callback.o init.o interrupt.o \