blob: 14fe952eac00afe2ed91bef3318f13cf96e562a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Definition of macros for library, and C startup code.
osedir = $(osrdir)$(DIRSEPSTR)$(OSENVIRONMENT)
.IMPORT .IGNORE : MSC_VER
MSC_VER *= 8.0
CFLAGS += -I$(osedir)
NDB_CFLAGS += -Od -GF -Ge
NDB_LDFLAGS +=
NDB_LDLIBS +=
# Redefine rule for making our objects, we don't need mv
%$O : %.c ;% $(CC) -c $(CFLAGS) -Fo$@ $<
|