Simplify the test's source code, remove unnecessary headers, and convert it from C++ to C.
10 lines
165 B
Makefile
10 lines
165 B
Makefile
C_SOURCES := main.c
|
|
|
|
all: secondprog
|
|
|
|
include Makefile.rules
|
|
|
|
secondprog: secondprog.cpp
|
|
$(MAKE) -f $(MAKEFILE_RULES) \
|
|
CXX_SOURCES=secondprog.cpp EXE=secondprog
|